Fix tests for log levels and work on adding title

This commit is contained in:
bel
2020-03-15 16:47:00 +00:00
parent fe6e721d84
commit c1fe373427
4 changed files with 19 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ func New() Logger {
func (l Logger) Info(m string, args ...interface{}) {
args = append([]interface{}{m}, args...)
switch m {
case "wake":
case "wake", "result":
logb.Verbose(args...)
case "run":
logb.Debug(args...)