Skip to content

Commit 9938c5a

Browse files
authored
Merge pull request #13988 from iterate-ch/bugfix/MD-18086
Logging.
2 parents da2e7a7 + 04c0c3f commit 9938c5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/csharp/ch/cyberduck/core/diagnostics/TcpReachability.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public bool isReachable(Host h)
6767
{
6868
if (Log.isDebugEnabled())
6969
{
70-
Log.debug($"WebException thrown with status {e.Status}");
70+
Log.debug($"WebException thrown with status {e.Status} for {h}");
7171
}
7272

7373
switch (e.Status)
@@ -87,7 +87,7 @@ public bool isReachable(Host h)
8787
}
8888
catch (Exception e)
8989
{
90-
Log.error("Generic exception while checking for reachability", e);
90+
Log.error("Generic exception while checking for reachability for {h}", e);
9191
return false;
9292
}
9393
default:

0 commit comments

Comments
 (0)