Skip to content

Commit c5e18b4

Browse files
authored
Log cause of CommandExecutionException in fabric's default exception handler (#466)
1 parent 07f7174 commit c5e18b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cloud-minecraft/cloud-fabric/src/main/java/cloud/commandframework/fabric/FabricExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ private void handleThrowable(final @NonNull S source, final @NonNull C sender, f
158158
LOGGER.warn(
159159
"Error occurred while executing command for user {}:",
160160
this.getName.apply(source),
161-
throwable
161+
throwable.getCause()
162162
);
163163
}
164164
);

0 commit comments

Comments
 (0)