Skip to content

Commit

Permalink
set better cli log root names
Browse files Browse the repository at this point in the history
  • Loading branch information
James Nesbitt committed Jan 25, 2016
1 parent 914c255 commit e978ba8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func init() {
}
}

logger = log.MakeCliLog("coach", os.Stdout, verbosity)
logger = log.MakeCliLog("coach-cli", os.Stdout, verbosity)
logger.Debug(log.VERBOSITY_DEBUG, "Reporting initialization", logger.Verbosity())

workingDir, _ := os.Getwd()
Expand Down
2 changes: 1 addition & 1 deletion coach-init/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func init() {
}
}

logger = log.MakeCliLog("coach", os.Stdout, verbosity)
logger = log.MakeCliLog("coach-init", os.Stdout, verbosity)
logger.Debug(log.VERBOSITY_DEBUG, "Reporting initialization", logger.Verbosity())

workingDir, _ := os.Getwd()
Expand Down

0 comments on commit e978ba8

Please sign in to comment.