mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-09 08:32:07 -07:00
Make debug dump file names consistent (#9075)
This commit is contained in:
@@ -313,7 +313,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+
|
||||
+ private void dumpPlugins(final CommandSender sender, final String[] args) {
|
||||
+ 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 {
|
||||
+ Files.createDirectories(parent);
|
||||
+ Files.createFile(path);
|
||||
|
Reference in New Issue
Block a user