Skip to content

Commit

Permalink
Merge pull request #16 from pfnet-research/fix-colorized-task-handler…
Browse files Browse the repository at this point in the history
…-output

fix pftaskqueue worker can log colorized handler output properly
  • Loading branch information
everpeace authored Jun 24, 2020
2 parents ad37eee + c60b2d0 commit e1b6aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/worker/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ func (w *Worker) startStreamToLogger(cmdCtx context.Context, wg *sync.WaitGroup,
if allLinesProcessed {
return
}
logger.Info().Msg(strconv.Quote(strings.TrimRight(line, "\n")))
logger.Info().Msg(strings.TrimRight(line, "\n"))
}
}
}()
Expand Down

0 comments on commit e1b6aff

Please sign in to comment.