refactor: changed fmt.Print to log.Info in cmd/fetch

This commit is contained in:
David Allen 2024-12-10 18:35:55 -07:00
parent ad45a540f0
commit d02a49fe80
Signed by: towk
GPG key ID: 793B2924A49B3A3F

View file

@ -33,7 +33,7 @@ var fetchCmd = &cobra.Command{
} else { } else {
// TODO: try and fetch token first if it is needed // TODO: try and fetch token first if it is needed
if verbose { if verbose {
fmt.Printf("No token found. Attempting to generate config without one...\n") log.Warn().Msg("No token found. Attempting to generate config without one...")
} }
} }
} }