Skip to content

Commit 54d59d5

Browse files
authored
[Bindings][BlobStorage] Update request.go - Log debug instead of warning (#3577)
Signed-off-by: Seweryn Sirek <[email protected]>
1 parent dae3211 commit 54d59d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/component/azure/blobstorage/request.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ func SanitizeMetadata(log logger.Logger, metadata map[string]string) map[string]
9999

100100
if n != len(key) {
101101
nks := string(newKey[:n])
102-
log.Warnf("metadata key %s contains disallowed characters, sanitized to %s", key, nks)
102+
log.Debugf("metadata key %s contains disallowed characters, sanitized to %s", key, nks)
103103
key = nks
104104
}
105105

0 commit comments

Comments
 (0)