From 54d59d5fc4de4dae61b39702aa21457ac709dd1d Mon Sep 17 00:00:00 2001 From: Seweryn Sirek <128463368+ssi-spyro@users.noreply.github.com> Date: Sat, 26 Oct 2024 01:33:41 +0200 Subject: [PATCH] [Bindings][BlobStorage] Update request.go - Log debug instead of warning (#3577) Signed-off-by: Seweryn Sirek <128463368+ssi-spyro@users.noreply.github.com> --- common/component/azure/blobstorage/request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/component/azure/blobstorage/request.go b/common/component/azure/blobstorage/request.go index 34ccd8dcd0..1b969f7273 100644 --- a/common/component/azure/blobstorage/request.go +++ b/common/component/azure/blobstorage/request.go @@ -99,7 +99,7 @@ func SanitizeMetadata(log logger.Logger, metadata map[string]string) map[string] if n != len(key) { nks := string(newKey[:n]) - log.Warnf("metadata key %s contains disallowed characters, sanitized to %s", key, nks) + log.Debugf("metadata key %s contains disallowed characters, sanitized to %s", key, nks) key = nks }