Added missing logger method

This commit is contained in:
RogueException
2016-06-09 02:30:05 -03:00
parent 1ea7fcb2c4
commit dea73042aa

View File

@@ -16,6 +16,8 @@ namespace Discord.Logging
Name = name;
}
public Task LogAsync(LogSeverity severity, Exception exception = null)
=> _manager.LogAsync(severity, Name, exception);
public Task LogAsync(LogSeverity severity, string message, Exception exception = null)
=> _manager.LogAsync(severity, Name, message, exception);
public Task LogAsync(LogSeverity severity, FormattableString message, Exception exception = null)