It works, don't touch it
This commit is contained in:
parent
9d06987a13
commit
4e1b6d4f86
@ -6,7 +6,7 @@ A Bukkit server implementation utilizing Mixin.
|
||||
|
||||
| Minecraft | Forge | Status | Build |
|
||||
| :----: | :----: | :---: | :---: |
|
||||
| 1.16.x | 34.1.25 | ACTIVE | [](https://ci.appveyor.com/project/IzzelAliz/arclight-16) |
|
||||
| 1.16.x | 35.1.0 | ACTIVE | [](https://ci.appveyor.com/project/IzzelAliz/arclight-16) |
|
||||
| 1.15.x | 31.2.45 | ACTIVE | [](https://ci.appveyor.com/project/IzzelAliz/arclight-15) |
|
||||
| 1.14.x | 28.2.0 | [LEGACY](https://github.com/IzzelAliz/Arclight/releases/tag/1.0.6) | [](https://ci.appveyor.com/project/IzzelAliz/arclight) |
|
||||
|
||||
|
||||
@ -17,7 +17,12 @@ public class ArclightI18nLogger extends ExtendedLoggerWrapper {
|
||||
}
|
||||
|
||||
public static Logger getLogger(String name) {
|
||||
return new ArclightI18nLogger((ExtendedLogger) LogManager.getLogger(name));
|
||||
for (int i = 0; i < 10; i++) {
|
||||
try {
|
||||
return new ArclightI18nLogger((ExtendedLogger) LogManager.getLogger(name));
|
||||
} catch (Throwable ignored) {}
|
||||
}
|
||||
throw new IllegalStateException("wtf");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Loading…
Reference in New Issue
Block a user