log errors to a channel
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 40s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 40s
This commit is contained in:
@ -1,7 +1,9 @@
|
||||
package cc.fascinated.bat.common;
|
||||
|
||||
import cc.fascinated.bat.config.Config;
|
||||
import lombok.experimental.UtilityClass;
|
||||
import net.dv8tion.jda.api.EmbedBuilder;
|
||||
import net.dv8tion.jda.api.entities.channel.concrete.TextChannel;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@ -50,8 +52,21 @@ public class EmbedUtils {
|
||||
* @return the embed builder
|
||||
*/
|
||||
public static EmbedBuilder genericInteractionError(Exception ex) {
|
||||
TextChannel channel = ChannelUtils.getTextChannel(Config.INSTANCE.getLogsChannel());
|
||||
if (channel != null) {
|
||||
channel.sendMessageEmbeds(EmbedUtils.errorEmbed()
|
||||
.setDescription("""
|
||||
An error has occurred while processing an interaction. Please check the logs for more information.
|
||||
```java
|
||||
%s
|
||||
```""".formatted(ex.getLocalizedMessage()))
|
||||
.build()).queue();
|
||||
}
|
||||
return EmbedUtils.errorEmbed()
|
||||
.setDescription("An error occurred while processing your interaction. Please try again later.\n" +
|
||||
"**Error:** ```java\n%s\n```" + ex.getLocalizedMessage());
|
||||
.setDescription("""
|
||||
An error has occurred while processing your interaction. Please check the logs for more information.
|
||||
```java
|
||||
%s
|
||||
```""".formatted(ex.getLocalizedMessage()));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user