From 5e466279a4f540a7335b91dacf401943937e9c02 Mon Sep 17 00:00:00 2001 From: Milos Kozak Date: Thu, 11 Nov 2021 17:32:09 +0100 Subject: [PATCH] improve logging --- .../plugins/general/automation/elements/InputDuration.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/automation/src/main/java/info/nightscout/androidaps/plugins/general/automation/elements/InputDuration.kt b/automation/src/main/java/info/nightscout/androidaps/plugins/general/automation/elements/InputDuration.kt index a20e509b19..6e275190e9 100644 --- a/automation/src/main/java/info/nightscout/androidaps/plugins/general/automation/elements/InputDuration.kt +++ b/automation/src/main/java/info/nightscout/androidaps/plugins/general/automation/elements/InputDuration.kt @@ -46,4 +46,6 @@ class InputDuration( this.value = value / 60 return this } + + override fun toString(): String = "InputDuration: $value $unit" } \ No newline at end of file