Move osqueryd run message to info log

This commit is contained in:
Zach Wasserman 2021-03-01 11:16:38 -08:00
parent 4bc6b8afeb
commit 7e4d661e84

View file

@ -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