Version 1.0.0-rc.3
Pre-release
Pre-release
- Replace
UseLog4NetXmlNamespace(null)withUseNoXmlNamespace() - Reduce the public API surface
- Removed all property getters on
Log4NetTextFormatterOptionsBuilder - Converted the
LineEndingExtensionsclass from public to internal
- Removed all property getters on
- Improve log4j compatibility mode: don't write the
xmlns:log4jattribute to be exactly compatible with log4j
Before (1.0.0-rc.2):
<log4j:event timestamp="1041689366535" level="INFO" xmlns:log4j="http://jakarta.apache.org/log4j/">
<log4j:message><![CDATA[Hello from Serilog]]></log4j:message>
</log4j:event>After (1.0.0-rc.3)
<log4j:event timestamp="1041689366535" level="INFO">
<log4j:message><![CDATA[Hello from Serilog]]></log4j:message>
</log4j:event>