36 lines
No EOL
1.2 KiB
C#
36 lines
No EOL
1.2 KiB
C#
using System;
|
|
using Discord.Commands;
|
|
using Serilog;
|
|
|
|
namespace Geekbot.net.Lib
|
|
{
|
|
public class ErrorHandler : IErrorHandler
|
|
{
|
|
private readonly ILogger logger;
|
|
// private readonly IDMChannel botOwnerDmChannel;
|
|
|
|
public ErrorHandler(ILogger logger /*, IDMChannel botOwnerDmChannel*/)
|
|
{
|
|
this.logger = logger;
|
|
// this.botOwnerDmChannel = botOwnerDmChannel;
|
|
}
|
|
|
|
public void HandleCommandException(Exception e, ICommandContext Context, string errorMessage = "")
|
|
{
|
|
var errorMsg =
|
|
$"Error Occured while executing \"{Context.Message.Content}\", executed by \"{Context.User.Username}\", complete message was \"{Context.Message}\"";
|
|
logger.Error(e, errorMsg);
|
|
if (!string.IsNullOrEmpty(errorMessage))
|
|
{
|
|
Context.Channel.SendMessageAsync(errorMessage);
|
|
}
|
|
// await botOwnerDmChannel.SendMessageAsync($"{errorMsg}```{e.StackTrace}```");
|
|
// await Context.Channel.SendMessageAsync("Something went wrong...");
|
|
}
|
|
}
|
|
|
|
public interface IErrorHandler
|
|
{
|
|
void HandleCommandException(Exception e, ICommandContext Context, string errorMessage = "");
|
|
}
|
|
} |