fixed log statement formatting error
This commit is contained in:
parent
856e1c966e
commit
234eb86f69
|
|
@ -2139,7 +2139,7 @@ func copyToClipboard(str string) {
|
|||
}
|
||||
cmd.Stdin = bytes.NewReader([]byte(str))
|
||||
if err := cmd.Run(); err != nil {
|
||||
log.Debugf("error copying to clipboard", err)
|
||||
log.Debugf("error copying to clipboard: %v", err)
|
||||
return
|
||||
}
|
||||
fmt.Fprintf(os.Stderr, "Code copied to clipboard")
|
||||
|
|
|
|||
Loading…
Reference in New Issue