@@ -134,7 +134,7 @@ private void StartListening()
134134 }
135135 catch ( Exception ex )
136136 {
137- BasisDebug . LogWarning ( $ "LAN DNS-SD discovery could not start: { ex . Message } ") ;
137+ BasisDebug . LogWarning ( $ "LAN DNS-SD discovery could not start: { ex . Message } ", BasisDebug . LogTag . Networking ) ;
138138 ReleaseAndroidMulticastLock ( ) ;
139139 }
140140 }
@@ -156,7 +156,7 @@ private void AcquireAndroidMulticastLock()
156156 {
157157 _androidMulticastLock ? . Dispose ( ) ;
158158 _androidMulticastLock = null ;
159- BasisDebug . LogWarning ( $ "Could not acquire Android LAN discovery multicast lock: { ex . Message } ") ;
159+ BasisDebug . LogWarning ( $ "Could not acquire Android LAN discovery multicast lock: { ex . Message } ", BasisDebug . LogTag . Networking ) ;
160160 }
161161#endif
162162 }
@@ -178,7 +178,7 @@ private void ReleaseAndroidMulticastLock()
178178 }
179179 catch ( Exception ex )
180180 {
181- BasisDebug . LogWarning ( $ "Could not release Android LAN discovery multicast lock: { ex . Message } ") ;
181+ BasisDebug . LogWarning ( $ "Could not release Android LAN discovery multicast lock: { ex . Message } ", BasisDebug . LogTag . Networking ) ;
182182 }
183183 finally
184184 {
@@ -392,7 +392,7 @@ private void QueueSourceChanged()
392392 }
393393
394394 try { SourceChanged ? . Invoke ( ) ; }
395- catch ( Exception ex ) { BasisDebug . LogError ( $ "LanServersDirectorySource.SourceChanged threw: { ex . Message } ") ; }
395+ catch ( Exception ex ) { BasisDebug . LogError ( $ "LanServersDirectorySource.SourceChanged threw: { ex . Message } ", BasisDebug . LogTag . Networking ) ; }
396396 } ) ;
397397 }
398398
@@ -407,7 +407,7 @@ public void Dispose()
407407 try { _cancellation . Cancel ( ) ; }
408408 catch ( ObjectDisposedException ) { }
409409 try { _browser ? . Dispose ( ) ; }
410- catch ( Exception ex ) { BasisDebug . LogWarning ( $ "LAN DNS-SD discovery shutdown failed: { ex . Message } ") ; }
410+ catch ( Exception ex ) { BasisDebug . LogWarning ( $ "LAN DNS-SD discovery shutdown failed: { ex . Message } ", BasisDebug . LogTag . Networking ) ; }
411411 _browser = null ;
412412 ReleaseAndroidMulticastLock ( ) ;
413413 _cancellation . Dispose ( ) ;
0 commit comments