mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 08:17:44 +01:00
Make debug dump file names consistent (#9075)
This commit is contained in:
parent
ee6a62f6b7
commit
bde53d9d44
@ -273,7 +273,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ File file = new File(new File(new File("."), "debug"),
|
+ File file = new File(new File(new File("."), "debug"),
|
||||||
+ "sync-load-info" + FORMATTER.format(LocalDateTime.now()) + ".txt");
|
+ "sync-load-info-" + FORMATTER.format(LocalDateTime.now()) + ".txt");
|
||||||
+ file.getParentFile().mkdirs();
|
+ file.getParentFile().mkdirs();
|
||||||
+ sender.sendMessage(text("Writing sync load info to " + file, GREEN));
|
+ sender.sendMessage(text("Writing sync load info to " + file, GREEN));
|
||||||
+
|
+
|
||||||
|
@ -313,7 +313,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
+
|
+
|
||||||
+ private void dumpPlugins(final CommandSender sender, final String[] args) {
|
+ private void dumpPlugins(final CommandSender sender, final String[] args) {
|
||||||
+ Path parent = Path.of("debug");
|
+ Path parent = Path.of("debug");
|
||||||
+ Path path = parent.resolve("plugin-info" + FORMATTER.format(LocalDateTime.now()) + ".txt");
|
+ Path path = parent.resolve("plugin-info-" + FORMATTER.format(LocalDateTime.now()) + ".txt");
|
||||||
+ try {
|
+ try {
|
||||||
+ Files.createDirectories(parent);
|
+ Files.createDirectories(parent);
|
||||||
+ Files.createFile(path);
|
+ Files.createFile(path);
|
||||||
|
Loading…
Reference in New Issue
Block a user