You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/11/10 13:52:14 UTC

[commons-daemon] branch master updated (f5cbc30 -> 14a60b1)

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git.


    from f5cbc30  Display service status name along the code.
     new 8e45e75  Add constant for Trace level.
     new 14a60b1  Typo in log message, TLA should be in upper case.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/native/windows/apps/prunmgr/prunmgr.c | 3 ++-
 src/native/windows/src/javajni.c          | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

[commons-daemon] 02/02: Typo in log message, TLA should be in upper case.

Posted by gg...@apache.org.
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/commons-daemon.git

commit 14a60b1d9e19bcfd510b44cb612f9e4ec83d28c1
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Nov 10 08:52:12 2021 -0500

    Typo in log message, TLA should be in upper case.
---
 src/native/windows/src/javajni.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/native/windows/src/javajni.c b/src/native/windows/src/javajni.c
index 1ca3345..708f272 100644
--- a/src/native/windows/src/javajni.c
+++ b/src/native/windows/src/javajni.c
@@ -814,7 +814,7 @@ apxJavaInitialize(APXHANDLE hJava, LPCSTR szClassPath,
             --sOptions;
         }
         for (i = 0; i < nOptions; i++) {
-            apxLogWrite(APXLOG_MARK_DEBUG "Jvm Option[%d] %s", i,
+            apxLogWrite(APXLOG_MARK_DEBUG "JVM Option[%d] %s", i,
                         lpJvmOptions[i].optionString);
         }
         vmArgs.options  = lpJvmOptions;

[commons-daemon] 01/02: Add constant for Trace level.

Posted by gg...@apache.org.
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/commons-daemon.git

commit 8e45e75ff53e4691686501bf1a4ce731fe2b2e5a
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Nov 10 08:48:37 2021 -0500

    Add constant for Trace level.
---
 src/native/windows/apps/prunmgr/prunmgr.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/native/windows/apps/prunmgr/prunmgr.c b/src/native/windows/apps/prunmgr/prunmgr.c
index b8b7ba1..e2bcd65 100644
--- a/src/native/windows/apps/prunmgr/prunmgr.c
+++ b/src/native/windows/apps/prunmgr/prunmgr.c
@@ -47,9 +47,10 @@ LPAPXGUISTORE _gui_store  = NULL;
 #define STAT_SYSTEM         L"LocalSystem"
 
 #define LOGL_ERROR          L"Error"
-#define LOGL_DEBUG          L"Debug"
 #define LOGL_INFO           L"Info"
 #define LOGL_WARN           L"Warn"
+#define LOGL_DEBUG          L"Debug"
+#define LOGL_TRACE          L"Trace"
 
 #define START_DELAYED        L"Automatic (Delayed Start)"
 #define START_AUTO           L"Automatic"