File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public sealed class HttpListener : IDisposable
7171 private bool _disposed ;
7272 private bool _ignoreWriteExceptions ;
7373 private volatile bool _listening ;
74- private Logger _logger ;
74+ private Logger _log ;
7575 private string _objectName ;
7676 private HttpListenerPrefixCollection _prefixes ;
7777 private string _realm ;
@@ -104,7 +104,7 @@ public HttpListener ()
104104 _contextRegistry = new LinkedList < HttpListenerContext > ( ) ;
105105 _contextRegistrySync = ( ( ICollection ) _contextRegistry ) . SyncRoot ;
106106
107- _logger = new Logger ( ) ;
107+ _log = new Logger ( ) ;
108108 _objectName = GetType ( ) . ToString ( ) ;
109109 _prefixes = new HttpListenerPrefixCollection ( this ) ;
110110 _waitQueue = new Queue < HttpListenerAsyncResult > ( ) ;
@@ -336,7 +336,7 @@ public static bool IsSupported {
336336 /// </value>
337337 public Logger Log {
338338 get {
339- return _logger ;
339+ return _log ;
340340 }
341341 }
342342
You can’t perform that action at this time.
0 commit comments