Skip to content

Commit 5eb00bd

Browse files
committed
added release notes for #247 and #256
1 parent 0ee8ef9 commit 5eb00bd

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed

src/changelog/3.1.1/245-ndc-inherit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<issue id="246" link="https://github.com/apache/logging-log4net/pull/246"/>
88
<description format="asciidoc">
99
Fix InvalidCastException in NDC.Inherit(System.Collections.Stack)
10-
(reported by @jberg7, implemented by @freeandnil in https://github.com/apache/logging-log4net/pull/246[#246])
10+
(reported by @jberg7, fixed by @FreeAndNil in https://github.com/apache/logging-log4net/pull/246[#246])
1111
</description>
1212
</entry>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<entry xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xmlns="https://logging.apache.org/xml/ns"
4+
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
5+
type="fixed">
6+
<issue id="247" link="https://github.com/apache/logging-log4net/issues/247"/>
7+
<issue id="248" link="https://github.com/apache/logging-log4net/pull/248"/>
8+
<description format="asciidoc">
9+
Fix caching of time strings in AbsoluteTimeDateFormatter (reported by @LeadAssimilator, fixed by @FreeAndNil in https://github.com/apache/logging-log4net/pull/248[#248])
10+
</description>
11+
</entry>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<entry xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xmlns="https://logging.apache.org/xml/ns"
4+
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
5+
type="fixed">
6+
<issue id="256" link="https://github.com/apache/logging-log4net/pull/256"/>
7+
<description format="asciidoc">
8+
Shutdown: Unsubscribe from AppDomain event handlers (by @Flohack74)
9+
</description>
10+
</entry>

src/log4net/Core/LoggerManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ public static ILogger GetLogger(Assembly repositoryAssembly, Type type)
339339
/// </remarks>
340340
public static void Shutdown()
341341
{
342-
//Cleanup event handlers since they only call this mathod anyways
342+
// Cleanup event handlers since they only call this method anyway
343343
AppDomain.CurrentDomain.ProcessExit -= OnProcessExit;
344344
AppDomain.CurrentDomain.DomainUnload -= OnDomainUnload;
345345

0 commit comments

Comments
 (0)