AccidentalFish.ApplicationSupport.Logging.ConsoleLogger.Implementation.ConsoleAsynchronousLogger.WarningAsync C# (CSharp) Method

WarningAsync() public method

public WarningAsync ( string message ) : Task
message string
return Task
        public async Task WarningAsync(string message, params object[] additionalData)
        {
            await LogAsync(LogLevelEnum.Warning, message, additionalData);
        }

Same methods

ConsoleAsynchronousLogger::WarningAsync ( string message, Exception exception ) : Task