mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 11:00:38 +00:00
Print stack trace of exception causes in verbose mode
This commit is contained in:
parent
e3c37a0239
commit
2044a7d7a5
32 changed files with 66 additions and 60 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue