From 9926a79503c9bd6454c076f2b60cd577f6061e4d Mon Sep 17 00:00:00 2001
From: Kai Reinhard <K.Reinhard@micromata.de>
Date: Sat, 19 Feb 2022 07:29:58 +0000
Subject: [PATCH] Using Borg version 1.1.17 as default. Version is now configurable via web client and json file.

---
 borgbutler-server/src/main/kotlin/de/micromata/borgbutler/server/ServerConfiguration.kt |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/borgbutler-server/src/main/kotlin/de/micromata/borgbutler/server/ServerConfiguration.kt b/borgbutler-server/src/main/kotlin/de/micromata/borgbutler/server/ServerConfiguration.kt
index fb59362..683a2b1 100644
--- a/borgbutler-server/src/main/kotlin/de/micromata/borgbutler/server/ServerConfiguration.kt
+++ b/borgbutler-server/src/main/kotlin/de/micromata/borgbutler/server/ServerConfiguration.kt
@@ -20,6 +20,10 @@
         webDevelopmentMode = other.webDevelopmentMode
     }
 
+    override fun toString(): String {
+        return "${super.toString()}, port=[$port], webDevelopmentMode=[$webDevelopmentMode]"
+    }
+
     companion object {
         val supportedLanguages = arrayOf("en", "de")
         const val WEBSERVER_PORT_DEFAULT = 9042

--
Gitblit v1.10.0