Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactored the library #21

Merged
merged 12 commits into from Jan 29, 2019

Updated release notes

  • Loading branch information
Jiri Tomek
Jiri Tomek committed Jan 29, 2019
commit cd066f3e41800c086fa29381dfb826d97238df72
@@ -17,7 +17,7 @@ public Config()
LogicalThreadContextKeys = null;
GlobalContextKeys = null;
BufferSize = 500;
NumberOfInnerExceptions = 1;
NumberOfInnerExceptions = 4;
SendInterval = TimeSpan.FromSeconds(5);
MaxLogQueueSize = 0; // unlimited
FinalFlushWaitTime = TimeSpan.FromSeconds(3);
@@ -4,15 +4,22 @@
<DebugType>full</DebugType>
<TargetFrameworks>netstandard2.0;net40</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>8.0.1</Version>
<Version>9.0.0</Version>
<Authors>Loggly</Authors>
<Company>Loggly</Company>
<PackageLicenseUrl>http://opensource.org/licenses/MIT</PackageLicenseUrl>
<Product>Loggly</Product>
<PackageProjectUrl>http://github.com/loggly/log4net-loggly</PackageProjectUrl>
<Description>Custom log4Net Appender to send logs to Loggly</Description>
<PackageReleaseNotes>.NET Standard 2.0 support with old .NET frameworks and new .NET Core 2.0 compatibility</PackageReleaseNotes>
<Copyright>Copyright 2017</Copyright>
<Description>Custom log4net Appender to send logs to Loggly</Description>
<PackageReleaseNotes>
- Fixed serialization of logged objects. They are now again serialized as full JSON instead of their .NET type name.
- Fixed issue when logicalThreadContextKeys and globalContextKeys were ignored if &lt;layout&gt; definition was used.
- Fixed priority of GlobalContext, ThreadContext, LogicalThreadContext and EventContext properties. It was in reverse order than it should be. Correct priority from highest to lowest is EventContext -> LogicalThreadContext -> ThreadContext -> GlobalContext
- Changed inner exception property names. Previously the exception properties were named "exceptionType, exceptionMessage" etc. but inner exception properties were "innerExceptionType, innerExceptionMessage" etc. This was unified and inner exception properties are now also named "exceptionType, exceptionMessage" etc.
- Changed default number of inner exceptions that are sent in log from 1 to 4.
- Changed visibility of private/internal classes to be really internal. Only public class is now LogglyAppender.
</PackageReleaseNotes>
<Copyright>Copyright 2019</Copyright>
<PackageTags>Loggly-log4net log4net appender logs</PackageTags>
<RootNamespace>log4net.loggly</RootNamespace>
</PropertyGroup>
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.