Skip to content

Commit

Permalink
fix(agent): rolling agent debug mqtt logs back.
Browse files Browse the repository at this point in the history
  • Loading branch information
Luiz Pegoraro committed Nov 21, 2023
1 parent ce8014e commit d4b8298
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agent/logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ func (a *agentLoggerWarn) Printf(format string, v ...interface{}) {
a.a.logger.Warn("WARN mqtt log", zap.Any("payload", v))
}
func (a *agentLoggerDebug) Println(v ...interface{}) {
//a.a.logger.Debug("DEBUG mqtt log", zap.Any("payload", v))
a.a.logger.Debug("DEBUG mqtt log", zap.Any("payload", v))
}
func (a *agentLoggerDebug) Printf(format string, v ...interface{}) {
//a.a.logger.Debug("DEBUG mqtt log", zap.Any("payload", v))
a.a.logger.Debug("DEBUG mqtt log", zap.Any("payload", v))
}
func (a *agentLoggerCritical) Println(v ...interface{}) {
a.a.logger.Error("CRITICAL mqtt log", zap.Any("payload", v))
Expand Down

0 comments on commit d4b8298

Please sign in to comment.