mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-13 04:53:55 +00:00
Identify as Fawe when throwing unknown exceptions
Closes #1281 Closes #1279 Closes #1282
This commit is contained in:
@ -874,7 +874,9 @@ public final class PlatformCommandManager {
|
||||
private void handleUnknownException(Actor actor, Throwable t) {
|
||||
actor.print(Caption.of("worldedit.command.error.report"));
|
||||
actor.print(TextComponent.of(t.getClass().getName() + ": " + t.getMessage()));
|
||||
LOGGER.error("An unexpected error while handling a WorldEdit command", t);
|
||||
//FAWE start - Exchange name
|
||||
LOGGER.error("An unexpected error while handling a FastAsyncWorldEdit command", t);
|
||||
//FAWE end
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
|
Reference in New Issue
Block a user