From 626f4b14214d5afb3376ebc9d4edf40f38988cba Mon Sep 17 00:00:00 2001 From: Devidas Khedkar <76941923+devidask27@users.noreply.github.com> Date: Fri, 21 Jan 2022 15:22:22 +0530 Subject: [PATCH] debugging msg reported by anirudh (#268) --- pkg/platform/debian/debian.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/platform/debian/debian.go b/pkg/platform/debian/debian.go index 766851fa..d45a0262 100644 --- a/pkg/platform/debian/debian.go +++ b/pkg/platform/debian/debian.go @@ -339,7 +339,7 @@ func (d *Debian) checkIfdpkgISLock() (bool, error) { if err != nil { return true, nil } else { - zap.S().Infof("Unable to acquire the dpkg lock on %s", file) + zap.S().Debugf("Unable to acquire the dpkg lock on %s", file) return false, fmt.Errorf("Unable to acquire the dpkg") } }