All Versions
14
Latest Version
Avg Release Cycle
74 days
Latest Release
1468 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.6.0 Changes
December 03, 2020 -
v1.5.0 Changes
July 09, 2020 -
v1.4.3 Changes
February 28, 2020- โ Added nullable reference types annotations (#36)
- ๐ Fixed a
NullReferenceException
which happened when using the default constructor ofConsoleAppender
-
v1.4.2 Changes
September 23, 2019- โ Added support for specifying an appender type with an assembly-qualified name - #35
-
v1.4.1 Changes
June 26, 2019- โ Added exception handling to unmanaged struct formatting
- โ Added exception message to the log when an exception occurs during formatting
-
v1.4.0 Changes
May 10, 2019- ๐ Support unmanaged structs #32 - thanks @scottstephens
-
v1.3.2 Changes
March 14, 2019- ๐ Fixes uncaught exception when running on Linux
-
v1.3.1 Changes
December 06, 2018- ๐ Fixed an accidental breaking change in the public API
-
v1.3.0 Changes
December 05, 2018- ๐ Fixed silent allocations which could occur when more than 10
Append
calls were issued. - โ Added a
LogEventArgumentCapacity
option which sets the max count of expectedAppend
calls. The default value is 32. - โ Added a
LogEventArgumentExhaustionStrategy
option which controls what to do when too manyAppend
calls are issued. Messages can either be truncated (default behavior) or cause allocations. - โ Added a global
TruncatedMessageSuffix
option which controls the suffix which will be appended to a truncated message. Default value:" [TRUNCATED]"
. - ๐จ Refactored configuration options. There is a breaking change in a public interface that should have remained internal and is not expected to be implemented outside of ZeroLog, hence only the minor version is increased.
- ๐ Fixed an access violation that could occur if a logger is used after a call to
LogManager.Shutdown
. Note that this could still happen if a log event is acquired before the shutdown and is retained for more than 100ms beforeAppend
is called, but this is incorrect ZeroLog usage and is not expected. Log events acquired after the shutdown are safe. - ๐ Fixed an error that caused ZeroLog to shutdown when a message longer than 16KB was logged. Such messages will either be truncated or cause an error to be logged.
- ๐ Fixed silent allocations which could occur when more than 10
-
v1.2.0 Changes
August 29, 2018- Many optimizations
- ๐ฒ Automatic flushing at the end of a log burst. Can be disabled with
LogManager.Config.FlushAppenders
- โ Added
LogManager.GetLogger<T>()
- โ Remove shutdown timeout which caused access violations with large buffers
๐ Note that this release changes the API surface of appenders. It didn't get a major version bump as it should not be a breaking change for most users (it will only break if you use custom appenders). More API changes will be made in v2.0.