3 instantiations of LogValuesFormatter
Microsoft.Extensions.Logging.Abstractions (3)
FormattedLogValues.cs (2)
39
_formatter = new
LogValuesFormatter
(format);
47
return new
LogValuesFormatter
(f);
LoggerMessage.cs (1)
454
var logValuesFormatter = new
LogValuesFormatter
(formatString);
34 references to LogValuesFormatter
Microsoft.Extensions.Logging.Abstractions (34)
FormattedLogValues.cs (4)
22
private static readonly ConcurrentDictionary<string,
LogValuesFormatter
> s_formatters = new ConcurrentDictionary<string,
LogValuesFormatter
>();
24
private readonly
LogValuesFormatter
? _formatter;
29
internal
LogValuesFormatter
? Formatter => _formatter;
LoggerMessage.cs (30)
23
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 0);
38
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 1);
52
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 2);
67
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 3);
83
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 4);
100
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 5);
118
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 6);
143
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 0);
186
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 1);
231
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 2);
278
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 3);
327
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 4);
378
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 5);
431
LogValuesFormatter
formatter = CreateLogValuesFormatter(formatString, expectedNamedParameterCount: 6);
452
private static
LogValuesFormatter
CreateLogValuesFormatter(string formatString, int expectedNamedParameterCount)
454
var
logValuesFormatter = new LogValuesFormatter(formatString);
470
private readonly
LogValuesFormatter
_formatter;
472
public LogValues(
LogValuesFormatter
formatter)
508
private readonly
LogValuesFormatter
_formatter;
511
public LogValues(
LogValuesFormatter
formatter, T0 value0)
556
private readonly
LogValuesFormatter
_formatter;
560
public LogValues(
LogValuesFormatter
formatter, T0 value0, T1 value1)
607
private readonly
LogValuesFormatter
_formatter;
634
public LogValues(
LogValuesFormatter
formatter, T0 value0, T1 value1, T2 value2)
662
private readonly
LogValuesFormatter
_formatter;
692
public LogValues(
LogValuesFormatter
formatter, T0 value0, T1 value1, T2 value2, T3 value3)
723
private readonly
LogValuesFormatter
_formatter;
756
public LogValues(
LogValuesFormatter
formatter, T0 value0, T1 value1, T2 value2, T3 value3, T4 value4)
788
private readonly
LogValuesFormatter
_formatter;
824
public LogValues(
LogValuesFormatter
formatter, T0 value0, T1 value1, T2 value2, T3 value3, T4 value4, T5 value5)