Skip to content

Commit

Permalink
Update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
get-got committed Nov 13, 2023
1 parent 139bbe6 commit ae5ffaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,13 @@ func main() {

// Output Flag Warnings
if config.Verbose {
log.Println(lg("Info", "", color.HiBlueString, "Verbose output enabled (extra info)..."))
log.Println(lg("Info", "", color.HiBlueString, "VERBOSE OUTPUT ENABLED ... just some extra info..."))
}
if config.Debug {
log.Println(lg("Info", "", color.HiYellowString, "Debugging output enabled (troubleshooting info)..."))
log.Println(lg("Info", "", color.HiYellowString, "DEBUGGING OUTPUT ENABLED ... some troubleshooting data..."))
}
if config.DebugVerbose {
log.Println(lg("Info", "", color.YellowString, "Verbose Debugging output enabled (extra troubleshooting info)..."))
log.Println(lg("Info", "", color.YellowString, "VERBOSE-DEBUGGING OUTPUT ENABLED ... some in-depth troubleshooting data..."))
}

mainWg.Wait() // wait because credentials from config
Expand Down

0 comments on commit ae5ffaa

Please sign in to comment.