The Gaudi Framework  v30r3 (a5ef0a68)
MSG Namespace Reference

Print levels enumeration. More...

Enumerations

enum  Level {
  NIL = 0, VERBOSE, DEBUG, INFO,
  WARNING, ERROR, FATAL, ALWAYS,
  NUM_LEVELS
}
 
enum  Color {
  BLACK = 0, RED, GREEN, YELLOW,
  BLUE, PURPLE, CYAN, WHITE,
  NUM_COLORS
}
 

Functions

MsgStreamdec (MsgStream &log)
 
MsgStreamhex (MsgStream &log)
 

Detailed Description

Print levels enumeration.

Enumeration Type Documentation

enum MSG::Color
Enumerator
BLACK 
RED 
GREEN 
YELLOW 
BLUE 
PURPLE 
CYAN 
WHITE 
NUM_COLORS 

Definition at line 17 of file IMessageSvc.h.

enum MSG::Level
Enumerator
NIL 
VERBOSE 
DEBUG 
INFO 
WARNING 
ERROR 
FATAL 
ALWAYS 
NUM_LEVELS 

Definition at line 16 of file IMessageSvc.h.

Function Documentation

MsgStream& MSG::dec ( MsgStream log)
inline

Definition at line 299 of file MsgStream.h.

300  {
301  log << std::dec;
302  return log;
303  }
T dec(T...args)
MsgStream& MSG::hex ( MsgStream log)
inline

Definition at line 304 of file MsgStream.h.

305  {
306  log << std::hex;
307  return log;
308  }
T hex(T...args)