summaryrefslogtreecommitdiff
path: root/ace/Log_Msg.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-04-14 02:21:08 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-04-14 02:21:08 +0000
commit3866310e8599832468db8c66c9974a21b0267eee (patch)
treeda99896eb8215a1b6bea0b39eb20c2ed3cf209fa /ace/Log_Msg.h
parentb1714e85be8fccae45ef0bfcd8897ec05175ddbd (diff)
downloadATCD-3866310e8599832468db8c66c9974a21b0267eee.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Log_Msg.h')
-rw-r--r--ace/Log_Msg.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/ace/Log_Msg.h b/ace/Log_Msg.h
index 32f6275e42d..2b5fb1f56c4 100644
--- a/ace/Log_Msg.h
+++ b/ace/Log_Msg.h
@@ -124,7 +124,10 @@ public:
// storage.
VERBOSE = 010,
// Display messages in a verbose manner.
- SILENT = 020
+ VERBOSE_LITE = 020,
+ // Display messages in a less verbose manner (i.e., only print
+ // information that can change between calls).
+ SILENT = 040
// Do not print messages at all (just leave in thread-specific
// storage for later inspection).
};
@@ -134,7 +137,7 @@ public:
static ACE_Log_Msg *instance (void);
// Returns a pointer to the Singleton.
- static int exists(void);
+ static int exists (void);
// Returns non-null if an ACE_Log_Msg exists for the calling thread.
ACE_Log_Msg (void);