volume/local: Fix debug log typo

Active count is incremented, but message claimed the opposite.

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This commit is contained in:
Paweł Gronowski 2023-08-18 11:38:50 +02:00
parent 01ac4892e0
commit 7f965d55c7
No known key found for this signature in database
GPG key ID: B85EFCFE26DEF92A

View file

@ -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