From bed58272a9fbac0a04fcc6a52245b551b3e704e9 Mon Sep 17 00:00:00 2001 From: Sven Rebhan Date: Wed, 1 Nov 2023 11:45:27 +0100 Subject: [PATCH] Remove debug messages --- host/host_linux.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/host/host_linux.go b/host/host_linux.go index 0578fd443..25ea3353d 100644 --- a/host/host_linux.go +++ b/host/host_linux.go @@ -524,13 +524,11 @@ func optionalValueReadFromFile(filename string) float64 { } func optionalProperties(basename string) map[string]float64 { - fmt.Println("base:", basename) // Determine all files with the base-prefix matches, err := filepath.Glob(basename + "_*") if err != nil { return nil } - fmt.Println("matches:", matches) // Collect the information from all files that are not already handled // with the exception of "max" and "crit" to keep an indicator if those