forked from GeyserMC/Geyser
Don't throw a stack trace when detecting for GUI (#919)
This commit is contained in:
parent
9cc468cee9
commit
cbb2586fba
1 changed files with 3 additions and 1 deletions
|
@ -167,7 +167,9 @@ public class GeyserConnector {
|
|||
try {
|
||||
Class<?> cls = Class.forName("org.geysermc.platform.standalone.GeyserStandaloneBootstrap");
|
||||
isGui = (boolean) cls.getMethod("isUseGui").invoke(cls.cast(bootstrap));
|
||||
} catch (Exception e) { e.printStackTrace(); }
|
||||
} catch (Exception e) {
|
||||
logger.debug("Failed detecting if standalone is using a GUI; if this is a GeyserConnect instance this can be safely ignored.");
|
||||
}
|
||||
}
|
||||
|
||||
double completeTime = (System.currentTimeMillis() - startupTime) / 1000D;
|
||||
|
|
Loading…
Reference in a new issue