Browse Source

change fmt to log

main
David Haukeness 2 years ago
parent
commit
e8574272cf
  1. 4
      libkeybase.go

4
libkeybase.go

@ -4,7 +4,7 @@ import ( @@ -4,7 +4,7 @@ import (
"bufio"
"context"
"encoding/json"
"fmt"
"log"
"os/exec"
)
@ -35,7 +35,7 @@ func (r *Options) locateKeybase() string { @@ -35,7 +35,7 @@ func (r *Options) locateKeybase() string {
}
path, err := exec.LookPath("keybase")
if err != nil {
fmt.Println("INFO: Could not detect keybase in path")
log.Println("INFO: Could not detect keybase in path")
return "keybase"
}
return path

Loading…
Cancel
Save