From 7e4d661e84f62a7bc5072d0c35e4372dae44e12e Mon Sep 17 00:00:00 2001 From: Zach Wasserman Date: Mon, 1 Mar 2021 11:16:38 -0800 Subject: [PATCH] Move osqueryd run message to info log --- pkg/osquery/osquery.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/osquery/osquery.go b/pkg/osquery/osquery.go index e8a8af5847..01eaa33066 100644 --- a/pkg/osquery/osquery.go +++ b/pkg/osquery/osquery.go @@ -103,7 +103,7 @@ func WithLogPath(path string) func(*Runner) error { // process may not be restarted after exit. Instead create a new one with // NewRunner. func (r *Runner) Execute() error { - log.Debug().Str("cmd", r.cmd.String()).Msg("run osqueryd") + log.Info().Str("cmd", r.cmd.String()).Msg("run osqueryd") ctx, cancel := context.WithCancel(context.Background()) r.cancel = cancel