#include <Logger.h>
Public Member Functions | |
DiagnosticContext (const char *fn_, u_long mask_=TRACE) | |
~DiagnosticContext () | |
Private Member Functions | |
DiagnosticContext (const DiagnosticContext &) | |
DiagnosticContext & | operator= (const DiagnosticContext &) |
Private Attributes | |
const char * | m_fname |
u_long | m_mask |
Definition at line 379 of file Logger.h.
|
Definition at line 396 of file Logger.h. References ASSA::FUNC_ENTRY, LOGGER, m_fname, and m_mask. 00397 : m_fname (fn_), m_mask (mask_) 00398 { 00399 if (LOGGER->group_enabled ((ASSA::Group) m_mask)) { 00400 LOGGER->sign_on (m_fname); 00401 LOGGER->log_func (m_mask, FUNC_ENTRY); 00402 } 00403 }
|
|
Definition at line 407 of file Logger.h. References ASSA::FUNC_EXIT, LOGGER, and m_mask. 00408 { 00409 if (LOGGER->group_enabled ((ASSA::Group) m_mask)) { 00410 LOGGER->log_func (m_mask, FUNC_EXIT); 00411 LOGGER->sign_off (); 00412 } 00413 }
|
|
|
|
|
|
Definition at line 390 of file Logger.h. Referenced by DiagnosticContext(). |
|
Definition at line 391 of file Logger.h. Referenced by DiagnosticContext(), and ~DiagnosticContext(). |