Beispiel #1
0
        private void Log(string message, LogType level, BreadcrumbLevel breadcrumbLevel, IDictionary <string, string> attributes = null)
        {
            var type = _breadcrumbs.ConvertLogTypeToLogLevel(level);

            if (!_breadcrumbs.ShouldLog(type))
            {
                return;
            }
            _breadcrumbs.AddBreadcrumbs(message, breadcrumbLevel, type, attributes);
        }