mirror of
https://github.com/MovingBlocks/Terasology
synced 2026-05-24 09:28:22 +00:00
chore(subsystems/discord): catch runtime exception and log only message (#5063)
This commit is contained in:
parent
03023ad52c
commit
5e3d63f186
1 changed files with 3 additions and 0 deletions
|
|
@ -188,6 +188,9 @@ public void run() {
|
|||
|
||||
// Retry to connect again
|
||||
}
|
||||
} catch (RuntimeException e) {
|
||||
logger.error("Could not create or connect Discord client: {}", e.getMessage());
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue