Skip to content

Commit

Permalink
docker/driver: downgraded log level for error in DestroyTask
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Baker committed Jun 3, 2019
1 parent 262c863 commit 7b6d233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/docker/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ func (d *Driver) DestroyTask(taskID string, force bool) error {
if err != nil {
switch err.(type) {
case *docker.NoSuchContainer:
h.logger.Error("failed to inspect container state, will proceed with DestroyTask",
h.logger.Info("container was removed out of band, will proceed with DestroyTask",
"error", err)
default:
return fmt.Errorf("failed to inspect container state: %v", err)
Expand Down

0 comments on commit 7b6d233

Please sign in to comment.