4 writes to _formatter
Microsoft.Extensions.Logging.Abstractions (4)
FormattedLogValues.cs (4)
39if (!s_formatters.TryGetValue(format, out _formatter)) 41_formatter = new LogValuesFormatter(format); 46_formatter = s_formatters.GetOrAdd(format, f => 55_formatter = null;
7 references to _formatter
Microsoft.Extensions.Logging.Abstractions (7)
FormattedLogValues.cs (7)
31internal LogValuesFormatter? Formatter => _formatter; 67if (_formatter is null || _values is null) 77return _formatter.GetValue(_values, index); 85if (_formatter == null) 90return _formatter.ValueNames.Count + 1; 104if (_formatter == null) 109return _cachedToString ??= _formatter.Format(_values);