From 63c2cabd8938bf6314fe954480c5a215195a3a72 Mon Sep 17 00:00:00 2001 From: Harish P Date: Mon, 7 Oct 2024 20:15:50 +0530 Subject: [PATCH] lint error fix --- gofsutil_mount_unix.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gofsutil_mount_unix.go b/gofsutil_mount_unix.go index b5e9580..8a4a723 100644 --- a/gofsutil_mount_unix.go +++ b/gofsutil_mount_unix.go @@ -571,7 +571,8 @@ func (fs *FS) multipathCommand(ctx context.Context, timeoutSeconds time.Duration log.Error("multipath command failed: " + err.Error()) } if len(textBytes) > 0 { - log.Debugf("multipath output: %s" + string(textBytes)) + data := string(textBytes) + log.Debug("multipath output:" + data) } return textBytes, err }