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] }