mirror of
https://github.com/aljazceru/signal-cli.git
synced 2025-12-19 07:04:21 +01:00
Print stack trace of exception causes in verbose mode
This commit is contained in:
@@ -43,8 +43,7 @@ public class GetUserStatusCommand implements JsonRpcLocalCommand {
|
||||
try {
|
||||
registered = m.areUsersRegistered(new HashSet<>(ns.getList("recipient")));
|
||||
} catch (IOException e) {
|
||||
logger.debug("Failed to check registered users", e);
|
||||
throw new IOErrorException("Unable to check if users are registered");
|
||||
throw new IOErrorException("Unable to check if users are registered", e);
|
||||
}
|
||||
|
||||
// Output
|
||||
|
||||
Reference in New Issue
Block a user