From 4187dc3bcb6db0108f314a5bf756c0bee7ed5df0 Mon Sep 17 00:00:00 2001 From: Victor Marmol Date: Thu, 7 Aug 2014 11:51:15 -0700 Subject: [PATCH] Fix capitalization in log files. --- manager/manager.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manager/manager.go b/manager/manager.go index 5163e270..f8bb194a 100644 --- a/manager/manager.go +++ b/manager/manager.go @@ -325,7 +325,7 @@ func (m *manager) detectContainers() error { for _, cont := range added { _, err = m.createContainer(cont.Name) if err != nil { - glog.Errorf("failed to create existing container: %s: %s", cont.Name, err) + glog.Errorf("Failed to create existing container: %s: %s", cont.Name, err) } } @@ -333,7 +333,7 @@ func (m *manager) detectContainers() error { for _, cont := range removed { err = m.destroyContainer(cont.Name) if err != nil { - glog.Errorf("failed to destroy existing container: %s: %s", cont.Name, err) + glog.Errorf("Failed to destroy existing container: %s: %s", cont.Name, err) } }