Skip to content

Commit

Permalink
Osquerybeat: Translate osqueryd INFO level logs into osquerybeat DEBU…
Browse files Browse the repository at this point in the history
…G level logs (#39862)
  • Loading branch information
aleksmaus authored Jun 21, 2024
1 parent ac4090a commit 0a77bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/osquerybeat/beater/logger_plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (m *osqueryLogMessage) Log(typ logger.LogType, log *logp.Logger) {
case severityWarning:
log.Warnw(m.Message, args...)
case severityInfo:
log.Infow(m.Message, args...)
log.Debugw(m.Message, args...)
default:
log.Debugw(m.Message, args...)
}
Expand Down

0 comments on commit 0a77bf2

Please sign in to comment.