summaryrefslogtreecommitdiff
path: root/ace/Log_Priority.h
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-20 02:34:57 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-20 02:34:57 +0000
commit5c1001ce4f585836e1f83c28d1df89aee42fb743 (patch)
tree5967e9ca7d44ed1d2823be9746817ebb8e025f5d /ace/Log_Priority.h
parent2ae14b2b85ad813a269e8a5529aa76cf984fa8a5 (diff)
downloadATCD-5c1001ce4f585836e1f83c28d1df89aee42fb743.tar.gz
changed include protection from #if !defined to ifndef, and added #pragma once, if possible
Diffstat (limited to 'ace/Log_Priority.h')
-rw-r--r--ace/Log_Priority.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/ace/Log_Priority.h b/ace/Log_Priority.h
index e398d0da873..3d66d35fc32 100644
--- a/ace/Log_Priority.h
+++ b/ace/Log_Priority.h
@@ -5,13 +5,13 @@
//
// = LIBRARY
// ace
-//
+//
// = FILENAME
// Log_Priority.h
//
// = AUTHOR
-// Doug Schmidt
-//
+// Doug Schmidt
+//
// ============================================================================
#ifndef ACE_LOG_PRIORITY_H
@@ -27,38 +27,38 @@ enum ACE_Log_Priority
// These values are defined using powers of two so that it's
// possible to form a mask to turn them on or off dynamically.
- // = Note, this first argument *must* start at 1!
+ // = Note, this first argument *must* start at 1!
LM_SHUTDOWN = 01,
// Shutdown the logger (decimal 1).
- LM_TRACE = 02,
+ LM_TRACE = 02,
// Messages indicating function-calling sequence (decimal 2).
- LM_DEBUG = 04,
+ LM_DEBUG = 04,
// Messages that contain information normally of use only when
// debugging a program (decimal 4).
- LM_INFO = 010,
+ LM_INFO = 010,
// Informational messages (decimal 8).
- LM_NOTICE = 020,
+ LM_NOTICE = 020,
// Conditions that are not error conditions, but that may require
// special handling (decimal 16).
- LM_WARNING = 040,
+ LM_WARNING = 040,
// Warning messages (decimal 32).
- LM_STARTUP = 0100,
+ LM_STARTUP = 0100,
// Initialize the logger (decimal 64).
- LM_ERROR = 0200,
+ LM_ERROR = 0200,
// Error messages (decimal 128).
- LM_CRITICAL = 0400,
+ LM_CRITICAL = 0400,
// Critical conditions, such as hard device errors (decimal 256).
- LM_ALERT = 01000,
+ LM_ALERT = 01000,
// A condition that should be corrected immediately, such as a
// corrupted system database (decimal 512).