Ok that was too heavy and unnecessary

This commit is contained in:
Kwoth 2016-10-12 05:58:07 +02:00
parent dfeb1223fa
commit 4be988df1a

View File

@ -68,7 +68,6 @@ namespace NadekoBot.Services
private async Task MessageReceivedHandler(IMessage msg) private async Task MessageReceivedHandler(IMessage msg)
{ {
_log.Info("Message received.");
var usrMsg = msg as IUserMessage; var usrMsg = msg as IUserMessage;
if (usrMsg == null) if (usrMsg == null)
return; return;
@ -121,9 +120,6 @@ namespace NadekoBot.Services
return; return;
} }
} }
_log.Info("Done checks.");
var throwaway = Task.Run(async () => var throwaway = Task.Run(async () =>
{ {
var sw = new Stopwatch(); var sw = new Stopwatch();
@ -189,12 +185,7 @@ namespace NadekoBot.Services
if (ex.InnerException != null) if (ex.InnerException != null)
_log.Warn(ex.InnerException, "Inner Exception of the error in CommandHandler"); _log.Warn(ex.InnerException, "Inner Exception of the error in CommandHandler");
} }
finally
{
_log.Info("Command handling done.");
}
}); });
_log.Info("Command handling started.");
return; return;
} }