summaryrefslogtreecommitdiff
path: root/unix.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-31 12:41:28 -0600
committerJeff Carr <[email protected]>2024-01-31 12:41:28 -0600
commit1a9b13dda5e13d0786718768443bab4a6916aab9 (patch)
treeae05054e4889c2b1b7153b2992d80c4e856df20b /unix.go
parent513c38922b1dca37bb2b2d64c5997e44b5796d00 (diff)
use SetText() not SetValue()
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'unix.go')
-rw-r--r--unix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix.go b/unix.go
index b6841ff..8ca4824 100644
--- a/unix.go
+++ b/unix.go
@@ -91,7 +91,7 @@ func run(s string) string {
// Trim leading and trailing whitespace from each line
tmp := strings.TrimSpace(out.String())
// Output the results
- log.Info("Command Output:", tmp)
+ log.Verbose("Command Output:", tmp)
return tmp
}