Просмотр исходного кода

Merge pull request #46261 from vvoland/volume-decrement-refcount-typo

volume/local: Fix debug log typo
Sebastiaan van Stijn 1 год назад
Родитель
Сommit
9efe6501bb
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      volume/local/local.go

+ 1 - 1
volume/local/local.go

@@ -309,7 +309,7 @@ func (v *localVolume) Mount(id string) (string, error) {
 			v.active.mounted = true
 		}
 		v.active.count++
-		logger.WithField("active mounts", v.active).Debug("Decremented active mount count")
+		logger.WithField("active mounts", v.active).Debug("Incremented active mount count")
 	}
 	if err := v.postMount(); err != nil {
 		return "", err