remove "Start watching journald" to avoid plugin log spam

This commit is contained in:
Michael Grosser
2022-10-19 14:38:24 -07:00
parent 80fc2c206e
commit a83ef25930

View File

@@ -1,3 +1,4 @@
//go:build journald
// +build journald
/*
@@ -77,7 +78,6 @@ func (j *journaldWatcher) Watch() (<-chan *logtypes.Log, error) {
return nil, err
}
j.journal = journal
glog.Info("Start watching journald")
go j.watchLoop()
return j.logCh, nil
}