mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 15:31:53 +03:00
[FIX] Logger и ServerWrapper или e.printStackTrace вместо нормального логгирования.
This commit is contained in:
parent
6aaf20c1d3
commit
851dcf52fe
2 changed files with 5 additions and 7 deletions
|
@ -63,16 +63,16 @@ public static void premain(String agentArgument, Instrumentation instrumentation
|
||||||
Object[] args = {agentArgument, instrumentation};
|
Object[] args = {agentArgument, instrumentation};
|
||||||
mainMethod.invoke(args);
|
mainMethod.invoke(args);
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
e.printStackTrace();
|
LogHelper.error(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void loadLibraries(Path dir) {
|
public static void loadLibraries(Path dir) {
|
||||||
try {
|
try {
|
||||||
Files.walkFileTree(dir, Collections.singleton(FileVisitOption.FOLLOW_LINKS), Integer.MAX_VALUE, new StarterVisitor());
|
IOHelper.walk(dir, new StarterVisitor(), true);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace(System.err);
|
LogHelper.error(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,6 +77,8 @@ public static boolean loopAuth(ServerWrapper wrapper, int count, int sleeptime)
|
||||||
try {
|
try {
|
||||||
Thread.sleep(sleeptime);
|
Thread.sleep(sleeptime);
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
LogHelper.error(e);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -179,10 +181,6 @@ private static void generateConfigIfNotExists() throws IOException {
|
||||||
newConfig.reconnectCount = 10;
|
newConfig.reconnectCount = 10;
|
||||||
newConfig.reconnectSleep = 1000;
|
newConfig.reconnectSleep = 1000;
|
||||||
newConfig.env = LauncherConfig.LauncherEnvironment.STD;
|
newConfig.env = LauncherConfig.LauncherEnvironment.STD;
|
||||||
//try(Reader reader = IOHelper.newReader(IOHelper.getResourceURL("ru/gravit/launcher/server/ServerWrapper.cfg")))
|
|
||||||
//{
|
|
||||||
// newConfig = gson.fromJson(reader,Config.class);
|
|
||||||
//}
|
|
||||||
|
|
||||||
LogHelper.warning("Title is not set. Please show ServerWrapper.cfg");
|
LogHelper.warning("Title is not set. Please show ServerWrapper.cfg");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue