Skip to content

Commit d4c4537

Browse files
committed
Correct message re: enabling logging
If the `v` key is not set to `true` in the configuration file, Arduino Create Agent prints a helpful message to the terminal. Previously this message instructed the user to enable logging via a `-v` command line flag. However, Arduino Create Agent doesn't have a `-v` flag. The sole mechanism for controlling logging is the `v` key of the configuration file. The instructions in the message are hereby corrected to specify the use of the configuration file.
1 parent e565300 commit d4c4537

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ func loop() {
320320
}
321321

322322
if !*verbose {
323-
log.Println("You can enter verbose mode to see all logging by starting with the -v command line switch.")
323+
log.Println("You can enter verbose mode to see all logging by setting the v key in the configuration file to true.")
324324
log.SetOutput(io.Discard)
325325
}
326326

0 commit comments

Comments
 (0)