fix: changed output to use log instead of fmt

This commit is contained in:
David Allen 2024-12-03 12:51:48 -07:00
parent 5ca4d17d42
commit e1a9f4ae36
Signed by: towk
GPG key ID: 793B2924A49B3A3F
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ var serveCmd = &cobra.Command{
conf.AccessToken = accessToken
} else {
if verbose {
fmt.Printf("No token found. Continuing without one...\n")
log.Warn().Msg("No token found. Continuing without one...\n")
}
}
}