Undo changed to Errorf in manager.go re: capatalization.

This commit is contained in:
Satnam Singh 2014-09-24 10:15:08 -07:00
parent 8551d376d8
commit 3f45b35768

View File

@ -393,7 +393,7 @@ func (m *manager) detectSubcontainers(containerName string) error {
for _, cont := range added { for _, cont := range added {
err = m.createContainer(cont.Name) err = m.createContainer(cont.Name)
if err != nil { 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)
} }
} }
@ -401,7 +401,7 @@ func (m *manager) detectSubcontainers(containerName string) error {
for _, cont := range removed { for _, cont := range removed {
err = m.destroyContainer(cont.Name) err = m.destroyContainer(cont.Name)
if err != nil { 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)
} }
} }