diff --git a/LICENSE b/LICENSE index 587497e0..8d5d15d6 100644 --- a/LICENSE +++ b/LICENSE @@ -289,7 +289,7 @@ [BSD 3-Clause License] https://git.dorkbox.com/dorkbox/MinLog-SLF4J https://github.com/EsotericSoftware/minlog - Copyright 2022 + Copyright 2021 Dorkbox LLC Nathan Sweet Dan Brown @@ -298,7 +298,7 @@ - SLF4J - Simple facade or abstraction for various logging frameworks [MIT License] http://www.slf4j.org - Copyright 2022 + Copyright 2021 QOS.ch - Updates - Software Update Management diff --git a/src/dorkbox/network/Client.kt b/src/dorkbox/network/Client.kt index 89711924..393ab72d 100644 --- a/src/dorkbox/network/Client.kt +++ b/src/dorkbox/network/Client.kt @@ -386,9 +386,9 @@ open class Client( // short delay, since it failed we want to limit the retry rate to something slower than "as fast as the CPU can do it" delay(500) if (logger.isTraceEnabled) { - logger.trace(e) { "Unable to connect, retrying..." } + logger.trace(e) { "Unable to connect to ${IP.toString(remoteAddress!!)}, retrying..." } } else { - logger.info { "Unable to connect, retrying..." } + logger.info { "Unable to connect to ${IP.toString(remoteAddress!!)}, retrying..." } } } catch (e: Exception) {