aboutsummaryrefslogtreecommitdiff
path: root/nexus
diff options
context:
space:
mode:
authorAntoine A <>2024-01-23 20:46:22 +0100
committerAntoine A <>2024-01-23 20:46:22 +0100
commit5441ffc36fc9273cd0eb359b9908ed6e6fb34e1e (patch)
tree28c8dda73db5325e16faa1e6bda3df3153995067 /nexus
parent1d27092ddb45ab63cee93a738e785f36f7039dbc (diff)
downloadlibeufin-5441ffc36fc9273cd0eb359b9908ed6e6fb34e1e.tar.gz
libeufin-5441ffc36fc9273cd0eb359b9908ed6e6fb34e1e.tar.bz2
libeufin-5441ffc36fc9273cd0eb359b9908ed6e6fb34e1e.zip
Remove debug println
Diffstat (limited to 'nexus')
-rw-r--r--nexus/src/main/kotlin/tech/libeufin/nexus/EbicsFetch.kt1
-rw-r--r--nexus/src/main/kotlin/tech/libeufin/nexus/Log.kt3
2 files changed, 1 insertions, 3 deletions
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/EbicsFetch.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/EbicsFetch.kt
index 55a3e401..2c26ea75 100644
--- a/nexus/src/main/kotlin/tech/libeufin/nexus/EbicsFetch.kt
+++ b/nexus/src/main/kotlin/tech/libeufin/nexus/EbicsFetch.kt
@@ -424,7 +424,6 @@ class EbicsFetch: CliktCommand("Fetches bank records. Defaults to camt.054 noti
* FIXME: reduce code duplication with the submit subcommand.
*/
override fun run() = cliCmd(logger, common.log) {
- println("start $ebicsLog")
val cfg: EbicsSetupConfig = extractEbicsConfig(common.config)
val dbCfg = cfg.config.dbConfig()
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/Log.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/Log.kt
index e59b65f4..ffd495f8 100644
--- a/nexus/src/main/kotlin/tech/libeufin/nexus/Log.kt
+++ b/nexus/src/main/kotlin/tech/libeufin/nexus/Log.kt
@@ -36,8 +36,7 @@ class FileLogger(path: String?) {
private val dir = if (path != null) Path(path) else null
init {
- println("$path $dir")
- if (dir != null) {
+ if (dir != null) {
try {
// Create logging directory if missing
dir.createDirectories()