Merge branch 'master' into feature/performance-improvements

This commit is contained in:
Kas-tle
2025-11-13 17:56:00 -08:00
committed by GitHub
20 changed files with 57943 additions and 40348 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ public class Console implements CommandSender {
protected final PrintStream logs;
public Console(InputStream in, PrintStream out, PrintStream err) throws IOException {
String fileName = new SimpleDateFormat("yyyy'-'MM'-'dd'_'HH'-'mm'-'ss'_'zzz'.log'").format(new Date());
String fileName = new SimpleDateFormat("yyyy'-'MM'-'dd'_'HH'-'mm'-'ss'_'zzz'.log'").format(new Date()).replace(":", "");
File dir = new File("logs");
dir.mkdirs();
File logs = new File(dir, fileName);