3 instantiations of FormattedLogValues
Microsoft.Extensions.Logging.Abstractions (3)
FormattedLogValuesObsolete.cs (1)
28
_inner = new Microsoft.Extensions.Logging.
FormattedLogValues
(format, values);
LoggerExtensions.cs (2)
486
logger.Log(logLevel, eventId, new
FormattedLogValues
(message, args), exception, _messageFormatter);
510
return logger.BeginScope(new
FormattedLogValues
(messageFormat, args));
3 references to FormattedLogValues
Microsoft.Extensions.Logging.Abstractions (3)
FormattedLogValuesObsolete.cs (1)
19
private Microsoft.Extensions.Logging.
FormattedLogValues
_inner;
LoggerExtensions.cs (2)
13
private static readonly Func<
FormattedLogValues
, Exception?, string> _messageFormatter = MessageFormatter;
515
private static string MessageFormatter(
FormattedLogValues
state, Exception? error)