Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

Log_Msg.h File Reference

Log_Msg.h,v 4.105 2002/07/23 17:13:52 shuston Exp. More...

#include "ace/pre.h"
#include "ace/config-all.h"
#include "ace/Global_Macros.h"
#include "ace/Default_Constants.h"
#include "ace/Log_Priority.h"
#include "ace/Basic_Types.h"
#include "ace/OS_Errno.h"
#include "ace/OS_Log_Msg_Attributes.h"
#include "ace/post.h"

Include dependency graph for Log_Msg.h:

Include dependency graph

This graph shows which files directly or indirectly include this file:

Included by dependency graph

Compounds

class  ACE_Log_Msg
 Provides a variable length argument message logging abstraction. More...


Defines

#define ACE_ASSERT(X)
#define ACE_HEX_DUMP(X)
#define ACE_RETURN(Y)
#define ACE_ERROR_RETURN(X, Y)
#define ACE_ERROR(X)
#define ACE_DEBUG(X)
#define ACE_ERROR_INIT(VALUE, FLAGS)
#define ACE_ERROR_BREAK(X)   { ACE_ERROR (X); break; }
#define ACE_LOG_MSG   ACE_Log_Msg::instance ()

Detailed Description

Log_Msg.h,v 4.105 2002/07/23 17:13:52 shuston Exp.

Author:
Douglas C. Schmidt <schmidt@cs.wustl.edu>

Define Documentation

#define ACE_ASSERT  
 

Value:

do { if(!(X)) { \
  int __ace_error = ACE_Log_Msg::last_error_adapter (); \
  ACE_Log_Msg *ace___ = ACE_Log_Msg::instance (); \
  ace___->set (__FILE__, __LINE__, -1, __ace_error, ace___->restart (), \
               ace___->msg_ostream (), ace___->msg_callback ()); \
  ace___->log (LM_ERROR, ACE_LIB_TEXT ("ACE_ASSERT: file %N, line %l assertion failed for '%s'.%a\n"), #X, -1); \
  } } while (0)

#define ACE_DEBUG  
 

Value:

do { \
    int __ace_error = ACE_Log_Msg::last_error_adapter (); \
    ACE_Log_Msg *ace___ = ACE_Log_Msg::instance (); \
    ace___->conditional_set (__FILE__, __LINE__, 0, __ace_error); \
    ace___->log X; \
  } while (0)

#define ACE_ERROR  
 

Value:

do { \
    int __ace_error = ACE_Log_Msg::last_error_adapter (); \
    ACE_Log_Msg *ace___ = ACE_Log_Msg::instance (); \
    ace___->conditional_set (__FILE__, __LINE__, -1, __ace_error); \
    ace___->log X; \
  } while (0)

#define ACE_ERROR_BREAK      { ACE_ERROR (X); break; }
 

#define ACE_ERROR_INIT VALUE,
FLAGS   
 

Value:

do { \
    ACE_Log_Msg *ace___ = ACE_Log_Msg::instance (); \
    ace___->set_flags (FLAGS); ace___->op_status (VALUE); \
  } while (0)

#define ACE_ERROR_RETURN X,
 
 

Value:

do { \
    int __ace_error = ACE_Log_Msg::last_error_adapter (); \
    ACE_Log_Msg *ace___ = ACE_Log_Msg::instance (); \
    ace___->conditional_set (__FILE__, __LINE__, Y, __ace_error); \
    ace___->log X; \
    return Y; \
  } while (0)

#define ACE_HEX_DUMP  
 

Value:

do { \
    int __ace_error = ACE_Log_Msg::last_error_adapter (); \
    ACE_Log_Msg *ace___ = ACE_Log_Msg::instance (); \
    ace___->conditional_set (__FILE__, __LINE__, 0, __ace_error); \
    ace___->log_hexdump X; \
  } while (0)

#define ACE_LOG_MSG   ACE_Log_Msg::instance ()
 

#define ACE_RETURN  
 

Value:

do { \
    int __ace_error = ACE_Log_Msg::last_error_adapter (); \
    ACE_Log_Msg *ace___ = ACE_Log_Msg::instance (); \
    ace___->set (__FILE__, __LINE__, Y, __ace_error, ace___->restart (), \
                 ace___->msg_ostream (), ace___->msg_callback ()); \
    return Y; \
  } while (0)


Generated on Tue Aug 20 14:42:57 2002 for ACE by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001