Merge pull request #716 from zendesk/grosser/silence

remove "Start watching journald" to avoid plugin log spam
This commit is contained in:
Kubernetes Prow Robot
2023-01-31 23:13:06 -08:00
committed by GitHub

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
}