Undo changed to Errorf in manager.go re: capatalization.
This commit is contained in:
parent
cab052cc8a
commit
b4a7df6044
@ -340,7 +340,7 @@ func (m *manager) detectSubcontainers(containerName string) 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)
|
||||
}
|
||||
}
|
||||
|
||||
@ -348,7 +348,7 @@ func (m *manager) detectSubcontainers(containerName string) 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)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user