diff --git a/dvelop-sdk-logging/Logging.Abstractions/Scope/CustomAttributesLogScope.cs b/dvelop-sdk-logging/Logging.Abstractions/Scope/CustomAttributesLogScope.cs index 22a26d1..2d9d32c 100644 --- a/dvelop-sdk-logging/Logging.Abstractions/Scope/CustomAttributesLogScope.cs +++ b/dvelop-sdk-logging/Logging.Abstractions/Scope/CustomAttributesLogScope.cs @@ -22,7 +22,7 @@ public CustomAttributesLogScope(string name, Dictionary items) public override string ToString() { - return $"CustomAttributesLogScope:{Name} => Items: {Items.Select(i=>i.Key + ":" + i.Value)+";"}"; + return $"CustomAttributesLogScope:{Name} => Items: {string.Join(", ", Items.Select(i => $"'{i.Key}:{i.Value}'"))}"; } } }