use Sentry hints
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m5s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m5s
This commit is contained in:
parent
fa932b7fc2
commit
9395ae73b9
@ -69,7 +69,6 @@ public class EmbedUtils {
|
||||
if (channel != null) {
|
||||
channel.sendMessageEmbeds(embed.build()).queue();
|
||||
}
|
||||
Sentry.captureException(ex); // Capture the exception
|
||||
return embed;
|
||||
}
|
||||
}
|
||||
|
@ -8,6 +8,8 @@ import cc.fascinated.bat.config.Config;
|
||||
import cc.fascinated.bat.features.FeatureProfile;
|
||||
import cc.fascinated.bat.model.BatGuild;
|
||||
import cc.fascinated.bat.model.BatUser;
|
||||
import io.sentry.Hint;
|
||||
import io.sentry.Sentry;
|
||||
import lombok.Getter;
|
||||
import lombok.NonNull;
|
||||
import lombok.extern.log4j.Log4j2;
|
||||
@ -232,6 +234,14 @@ public class CommandService extends ListenerAdapter {
|
||||
} catch (Exception ex) {
|
||||
log.error("An error occurred while executing command \"{}\"", command.getInfo().getName(), ex);
|
||||
event.replyEmbeds(EmbedUtils.genericInteractionError(ex).build()).setEphemeral(true).queue();
|
||||
|
||||
Hint hint = new Hint();
|
||||
hint.set("command", command.getInfo().getName());
|
||||
hint.set("user", user.getId());
|
||||
if (guild != null) {
|
||||
hint.set("guild", guild.getId());
|
||||
}
|
||||
Sentry.captureException(ex, hint); // Capture the exception
|
||||
}
|
||||
}
|
||||
}
|
@ -5,6 +5,8 @@ import cc.fascinated.bat.event.EventListener;
|
||||
import cc.fascinated.bat.model.BatGuild;
|
||||
import cc.fascinated.bat.model.BatUser;
|
||||
import cc.fascinated.bat.model.DiscordMessage;
|
||||
import io.sentry.Hint;
|
||||
import io.sentry.Sentry;
|
||||
import lombok.NonNull;
|
||||
import lombok.extern.log4j.Log4j2;
|
||||
import net.dv8tion.jda.api.entities.Invite;
|
||||
@ -165,6 +167,13 @@ public class EventService extends ListenerAdapter {
|
||||
} catch (Exception ex) {
|
||||
log.error("An error occurred while handling a modal interaction.", ex);
|
||||
event.replyEmbeds(EmbedUtils.genericInteractionError(ex).build()).setEphemeral(true).queue();
|
||||
Hint hint = new Hint();
|
||||
hint.set("componentId", event.getComponentId());
|
||||
hint.set("user", user.getId());
|
||||
if (event.getGuild() != null) {
|
||||
hint.set("guild", event.getGuild().getId());
|
||||
}
|
||||
Sentry.captureException(ex, hint); // Capture the exception
|
||||
}
|
||||
}
|
||||
|
||||
@ -183,6 +192,13 @@ public class EventService extends ListenerAdapter {
|
||||
} catch (Exception ex) {
|
||||
log.error("An error occurred while handling a modal interaction.", ex);
|
||||
event.replyEmbeds(EmbedUtils.genericInteractionError(ex).build()).setEphemeral(true).queue();
|
||||
Hint hint = new Hint();
|
||||
hint.set("modalId", event.getModalId());
|
||||
hint.set("user", user.getId());
|
||||
if (event.getGuild() != null) {
|
||||
hint.set("guild", event.getGuild().getId());
|
||||
}
|
||||
Sentry.captureException(ex, hint); // Capture the exception
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user