This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq.git
The following commit(s) were added to refs/heads/main by this push:
new ab87b4ced9 On startup inform to inpsect log4j2.properties
new 58246c8a16 Merge pull request #1037 from
AlexejTimonin/startup-info-log4j-to-log4j2
ab87b4ced9 is described below
commit ab87b4ced91998cae8c9fbc38b7347289a2fc1b5
Author: Alexej Timonin <[email protected]>
AuthorDate: Sun Jun 25 18:24:11 2023 +0200
On startup inform to inpsect log4j2.properties
When ActiveMQ is started the following is printed out:
"INFO: Starting - inspect logfiles specified in logging.properties and
log4j.properties to get details"
No log4j.properties file exists, there is however, log4j2.properties.
---
assembly/src/release/bin/activemq | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/assembly/src/release/bin/activemq
b/assembly/src/release/bin/activemq
index 1b339856cf..d1b32c287f 100755
--- a/assembly/src/release/bin/activemq
+++ b/assembly/src/release/bin/activemq
@@ -546,7 +546,7 @@ invoke_start(){
ACTIVEMQ_OPTS="$ACTIVEMQ_OPTS $ACTIVEMQ_SUNJMX_START $ACTIVEMQ_SSL_OPTS
-Djava.awt.headless=true -Djava.io.tmpdir=\"${ACTIVEMQ_TMP}\""
- echo "INFO: Starting - inspect logfiles specified in logging.properties
and log4j.properties to get details"
+ echo "INFO: Starting - inspect logfiles specified in logging.properties
and log4j2.properties to get details"
invokeJar "$ACTIVEMQ_PIDFILE" start
exit "$?"
}