Skip to content

Commit

Permalink
Merge pull request #48 from serilog/dev
Browse files Browse the repository at this point in the history
3.2.0 Release
  • Loading branch information
nblumhardt authored Jan 6, 2017
2 parents dcbf3bc + 93c007c commit 4f7c30f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/Serilog.Sinks.Seq/SeqLoggerConfigurationExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static class SeqLoggerConfigurationExtensions
/// <param name="controlLevelSwitch">If provided, the switch will be updated based on the Seq server's level setting
/// for the corresponding API key. Passing the same key to MinimumLevel.ControlledBy() will make the whole pipeline
/// dynamically controlled. Do not specify <paramref name="restrictedToMinimumLevel"/> with this setting.</param>
/// <param name="messageHandler">Used to construct the HttpClient that will send the log meesages to Seq.</param>
/// <param name="messageHandler">Used to construct the HttpClient that will send the log messages to Seq.</param>
/// <param name="retainedInvalidPayloadsLimitBytes">A soft limit for the number of bytes to use for storing failed requests.
/// The limit is soft in that it can be exceeded by any single error payload, but in that case only that single error
/// payload will be retained.</param>
Expand Down Expand Up @@ -131,7 +131,7 @@ public static LoggerConfiguration Seq(
/// <param name="restrictedToMinimumLevel">The minimum log event level required
/// in order to write an event to the sink.</param>
/// <param name="apiKey">A Seq <i>API key</i> that authenticates the client to the Seq server.</param>
/// <param name="messageHandler">Used to construct the HttpClient that will send the log meesages to Seq.</param>
/// <param name="messageHandler">Used to construct the HttpClient that will send the log messages to Seq.</param>
/// <param name="compact">Use the compact log event format defined by
/// <a href="https://github.com/serilog/serilog-formatting-compact">Serilog.Formatting.Compact</a>. Has no effect on
/// durable log shipping. Requires Seq 3.3+.</param>
Expand Down
10 changes: 6 additions & 4 deletions src/Serilog.Sinks.Seq/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.1.1-*",
"version": "3.2.0-*",
"description": "Serilog sink that writes to the Seq log server over HTTP/S.",
"authors": [ "Serilog Contributors" ],
"packOptions": {
Expand All @@ -9,7 +9,7 @@
"iconUrl": "http://serilog.net/images/serilog-sink-seq-nuget.png"
},
"dependencies": {
"Serilog": "2.2.0",
"Serilog": "2.3.0",
"Serilog.Sinks.PeriodicBatching": "2.1.0",
"Serilog.Formatting.Compact": "1.0.0"
},
Expand All @@ -27,7 +27,8 @@
"System.Net.Http": ""
},
"dependencies": {
"Serilog.Sinks.RollingFile": "3.0.0"
"Serilog.Sinks.File": "3.2.0",
"Serilog.Sinks.RollingFile": "3.3.0"
}
},
"netstandard1.1": {
Expand All @@ -41,7 +42,8 @@
},
"dependencies": {
"System.Net.Http": "4.1.0",
"Serilog.Sinks.RollingFile": "3.0.0",
"Serilog.Sinks.File": "3.2.0",
"Serilog.Sinks.RollingFile": "3.3.0",
"System.Threading.Timer": "4.0.1"
}
}
Expand Down

0 comments on commit 4f7c30f

Please sign in to comment.