Fixed LogService level check

This commit is contained in:
RogueException
2015-12-07 10:26:49 -04:00
parent d9bfc5fef4
commit 0bc7683e15

View File

@@ -54,7 +54,7 @@ namespace Discord
public void Log(LogSeverity severity, string message, Exception exception = null)
{
if (severity >= _service.Level)
if (severity <= _service.Level)
_service.RaiseLogMessage(new LogMessageEventArgs(severity, _source, message, exception));
}
}