public void Log()

in src/Covi/Logs/MicrosoftExtensionsLoggingFacade.cs [35:52]


        public void Log(string message, Category category, Priority priority)
        {
            switch (category)
            {
                case Category.Debug:
                    _logger.LogDebug(message);
                    break;
                case Category.Info:
                    _logger.LogInformation(message);
                    break;
                case Category.Warn:
                    _logger.LogWarning(message);
                    break;
                case Category.Exception:
                    _logger.LogError(message);
                    break;
            }
        }