diff --git a/server/src/main/kotlin/suwayomi/tachidesk/server/ServerSetup.kt b/server/src/main/kotlin/suwayomi/tachidesk/server/ServerSetup.kt index 2f306cd0..4dc34d14 100644 --- a/server/src/main/kotlin/suwayomi/tachidesk/server/ServerSetup.kt +++ b/server/src/main/kotlin/suwayomi/tachidesk/server/ServerSetup.kt @@ -249,7 +249,9 @@ fun applicationSetup() { DataClassForDestruction(proxyEnabled, proxyHost, proxyPort, proxyUsername, proxyPassword) }, { (proxyEnabled, proxyHost, proxyPort, proxyUsername, proxyPassword) -> - logger.info("Socks Proxy changed - enabled=$proxyEnabled address=$proxyHost:$proxyPort , username=$proxyUsername, password=[REDACTED]") + logger.info( + "Socks Proxy changed - enabled=$proxyEnabled address=$proxyHost:$proxyPort , username=$proxyUsername, password=[REDACTED]", + ) if (proxyEnabled) { System.getProperties()["socksProxyHost"] = proxyHost System.getProperties()["socksProxyPort"] = proxyPort