commit 5441ffc36fc9273cd0eb359b9908ed6e6fb34e1e
parent 1d27092ddb45ab63cee93a738e785f36f7039dbc
Author: Antoine A <>
Date: Tue, 23 Jan 2024 20:46:22 +0100
Remove debug println
Diffstat:
3 files changed, 1 insertion(+), 4 deletions(-)
diff --git a/common/src/main/kotlin/TalerCommon.kt b/common/src/main/kotlin/TalerCommon.kt
@@ -121,7 +121,6 @@ class IbanPayto: PaytoUri {
override val receiverName: String?
constructor(raw: String) {
- println(raw)
try {
parsed = URI(raw)
} catch (e: Exception) {
diff --git 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
@@ -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()