From 0194a6d52e397c8bf771ad2557389e2bf6087616 Mon Sep 17 00:00:00 2001 From: Aria Moradi Date: Mon, 19 Feb 2024 02:28:59 +0330 Subject: [PATCH] fix lint issue --- .../src/main/kotlin/suwayomi/tachidesk/server/ServerSetup.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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