1 write to _formatter
Microsoft.Extensions.Logging.Abstractions (1)
8 references to _formatter
Microsoft.Extensions.Logging.Abstractions (8)
LoggerMessage.cs (8)
805return new KeyValuePair<string, object?>(_formatter.ValueNames[0], _value0);
807return new KeyValuePair<string, object?>(_formatter.ValueNames[1], _value1);
809return new KeyValuePair<string, object?>(_formatter.ValueNames[2], _value2);
811return new KeyValuePair<string, object?>(_formatter.ValueNames[3], _value3);
813return new KeyValuePair<string, object?>(_formatter.ValueNames[4], _value4);
815return new KeyValuePair<string, object?>(_formatter.ValueNames[5], _value5);
817return new KeyValuePair<string, object?>("{OriginalFormat}", _formatter.OriginalFormat);
837public override string ToString() => _formatter.FormatWithOverwrite(ToArray());