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:15 UTC

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

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"