From 273f572a871b0511dd0d0860045b308db6e2161b Mon Sep 17 00:00:00 2001 From: "Sean E. Russell" Date: Tue, 26 Jan 2021 13:09:10 -0600 Subject: The statusbar got lost somewhere along the way. A noisy (debug) log message was left in. --- widgets/proc_linux.go | 1 - 1 file changed, 1 deletion(-) (limited to 'widgets') diff --git a/widgets/proc_linux.go b/widgets/proc_linux.go index b967c7b..938e5c2 100644 --- a/widgets/proc_linux.go +++ b/widgets/proc_linux.go @@ -19,7 +19,6 @@ func getProcs() ([]Proc, error) { procs := []Proc{} for _, line := range linesOfProcStrings { - log.Printf("line is '%s', pid is '%s', cpu is '%s', mem is '%s'", line, strings.TrimSpace(line[0:10]), strings.TrimSpace(line[63:68]), strings.TrimSpace(line[69:74])) pid, err := strconv.Atoi(strings.TrimSpace(line[0:10])) if err != nil { log.Println(tr.Value("widget.proc.err.pidconv", err.Error(), line)) -- cgit v1.2.3