diff --git a/patches/server/0733-Add-System.out.println-catcher.patch b/patches/server/0733-Add-System.out.println-catcher.patch index dbb98d29e3..c2171fb570 100644 --- a/patches/server/0733-Add-System.out.println-catcher.patch +++ b/patches/server/0733-Add-System.out.println-catcher.patch @@ -6,7 +6,7 @@ Subject: [PATCH] Add System.out.println catcher diff --git a/src/main/java/io/papermc/paper/logging/SysoutCatcher.java b/src/main/java/io/papermc/paper/logging/SysoutCatcher.java new file mode 100644 -index 0000000000000000000000000000000000000000..e61b58f607dc83f5bb73b6cde50f3e8303849385 +index 0000000000000000000000000000000000000000..fd2af675d32e497fabd35f57b9e7c53ece97e6bd --- /dev/null +++ b/src/main/java/io/papermc/paper/logging/SysoutCatcher.java @@ -0,0 +1,56 @@ @@ -58,7 +58,7 @@ index 0000000000000000000000000000000000000000..e61b58f607dc83f5bb73b6cde50f3e83 + plugin.getDescription().getAuthors(), + plugin.getName()) + ); -+ } catch (final IllegalArgumentException e) { ++ } catch (final IllegalArgumentException | IllegalStateException e) { + // If anything happens, the calling class doesn't exist, there is no JavaPlugin that "owns" the calling class, etc + // Just print out normally, with some added information + Bukkit.getLogger().log(this.level, String.format("[%s] %s %s", this.prefix, clazz.getName(), line));