From a4499777c4d013eb48859596eae1ff164d16cd87 Mon Sep 17 00:00:00 2001 From: Rohit Jnagal Date: Tue, 9 Jun 2015 16:45:14 +0000 Subject: [PATCH] Make graceful degradation of OOM events clearer. --- manager/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/manager.go b/manager/manager.go index 7f2688d988..62255147f2 100644 --- a/manager/manager.go +++ b/manager/manager.go @@ -227,7 +227,7 @@ func (self *manager) Start() error { // Watch for OOMs. err = self.watchForNewOoms() if err != nil { - glog.Errorf("Failed to start OOM watcher, will not get OOM events: %v", err) + glog.Warningf("Could not configure a source for OOM detection, disabling OOM events: %v", err) } // If there are no factories, don't start any housekeeping and serve the information we do have.