mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 19:15:32 +01:00
Don't try to parse directories if we don't have any.
This commit is contained in:
parent
6a37511144
commit
77cc225b83
@ -51,8 +51,11 @@ public class ConsoleLogManager {
|
||||
|
||||
// We only care about parsing for directories, FileHandler can do file names by itself
|
||||
File parent = new File(pattern).getParentFile();
|
||||
String parentPath = parent.getPath();
|
||||
StringBuilder fixedPattern = new StringBuilder();
|
||||
String parentPath = "";
|
||||
if (parent != null) {
|
||||
parentPath = parent.getPath();
|
||||
}
|
||||
|
||||
int i = 0;
|
||||
while (i < parentPath.length()) {
|
||||
|
Loading…
Reference in New Issue
Block a user