From bec4d105c9d291de196a97fc59b8dccb07db0809 Mon Sep 17 00:00:00 2001 From: Denys Date: Tue, 5 Mar 2024 13:25:43 +0100 Subject: [PATCH] Removed debug output Signed-off-by: Denys --- smartctl.go | 1 - 1 file changed, 1 deletion(-) diff --git a/smartctl.go b/smartctl.go index bb0987b..5a91f11 100644 --- a/smartctl.go +++ b/smartctl.go @@ -46,7 +46,6 @@ type SMARTctl struct { func extractDiskName(input string) string { re := regexp.MustCompile(`^(/dev/\S+/\S+\s\[|/dev/)(?:\s\[|)(?P\S+)(?:\]\s.*|)$`) match := re.FindStringSubmatch(input) - fmt.Printf("MATCH: %s\n", match) if len(match) >= 2 { return match[2] }