This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new e47f7b418 Flip console output logic on shutdown from a system property
called 'SystemUtils.quiet' to 'SystemUtils.verbose'.
e47f7b418 is described below
commit e47f7b41871078bec0e3ad5c7036e64f3393b180
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Aug 30 17:19:11 2024 -0400
Flip console output logic on shutdown from a system property called
'SystemUtils.quiet' to 'SystemUtils.verbose'.
---
RELEASE-NOTES.txt | 1 +
.../src/main/java/org/apache/juneau/common/internal/SystemUtils.java | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 24ae6a2c3..f7ca011cd 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -35,6 +35,7 @@ Release Notes - Juneau - Version 9.1.0
* Bump org.apache:apache from 32 to 33 #157.
* Add org.apache.juneau.rest.mock.MockServletResponse.sendRedirect(String,
int, boolean) for jakarta.servlet:jakarta.servlet-api 6.1.0.
* Bump org.junit:junit-bom from 5.10.3 to 5.11.0 #161.
+ * Flip console output logic on shutdown from a system property called
'SystemUtils.quiet' to 'SystemUtils.verbose'.
Release Notes - Juneau - Version 9.0.1
diff --git
a/juneau-core/juneau-common/src/main/java/org/apache/juneau/common/internal/SystemUtils.java
b/juneau-core/juneau-common/src/main/java/org/apache/juneau/common/internal/SystemUtils.java
index 57da0ea62..69613ab61 100644
---
a/juneau-core/juneau-common/src/main/java/org/apache/juneau/common/internal/SystemUtils.java
+++
b/juneau-core/juneau-common/src/main/java/org/apache/juneau/common/internal/SystemUtils.java
@@ -26,7 +26,7 @@ public class SystemUtils {
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
public void run() {
- if (! Boolean.getBoolean("SystemUtils.quiet"))
+ if (Boolean.getBoolean("SystemUtils.verbose"))
SHUTDOWN_MESSAGES.forEach(x ->
System.out.println(x.get()));
}
});