Merge pull request #162 from vmarmol/master
Fix capitalization in log files.
This commit is contained in:
commit
9541787622
@ -325,7 +325,7 @@ func (m *manager) detectContainers() 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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -333,7 +333,7 @@ func (m *manager) detectContainers() 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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user