From f8bd74afb9d32fa42f5a2bf6e09384fc2ab48b29 Mon Sep 17 00:00:00 2001 From: Cyrill Troxler Date: Mon, 23 Jul 2018 20:55:53 +0200 Subject: [PATCH] Fix log output --- pkg/s3/mounter_s3backer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/s3/mounter_s3backer.go b/pkg/s3/mounter_s3backer.go index cc9318b..f5ee1c0 100644 --- a/pkg/s3/mounter_s3backer.go +++ b/pkg/s3/mounter_s3backer.go @@ -148,6 +148,6 @@ func formatFs(fsType string, device string) error { if err != nil { return fmt.Errorf("Error formatting disk: %s", out) } - glog.Info("Formatting fs with type %s, out: %s", fsType, out) + glog.Infof("Formatting fs with type %s", fsType) return nil }