#include <rtm/RTC.h>
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <stdarg.h>
#include <limits.h>
#include <time.h>
#include <errno.h>
#include <ace/Mutex.h>
#include <rtm/config_rtc.h>
Go to the source code of this file.
Namespaces | |
namespace | RTC |
Defines | |
#define | RTC_LOG(LV, fmt) |
Log output macro. | |
#define | RTC_ERROR(fmt) |
Error log output macro. | |
#define | RTC_WARN(fmt) |
Warning log output macro. | |
#define | RTC_INFO(fmt) |
Infomation level log output macro. | |
#define | RTC_NORMAL(fmt) |
Normal level log output macro. | |
#define | RTC_DEBUG(fmt) |
Debug level log output macro. | |
#define | RTC_TRACE(fmt) |
Trace level log output macro. | |
#define | RTC_VERBOSE(fmt) |
Verbose level log output macro. | |
#define | RTC_PARANOID(fmt) |
Paranoid level log output macro. | |
Typedefs | |
typedef sync_callback< char > | SyncCallback |
typedef basic_logbuf< char > | Logbuf |
typedef basic_medlogbuf< char > | MedLogbuf |
typedef basic_logstream< char > | LogStream |
|
Value: rtcout.acquire(); \ rtcout.level(LogStream::RTL_DEBUG) << rtcout.printf fmt << std::endl; \ rtcout.release() If logging levels are ( DEBUG, TRACE, VERBOSE, PARANOID ), message will be output to log. |
|
Value: rtcout.acquire(); \ rtcout.level(LogStream::RTL_ERROR) << rtcout.printf fmt << std::endl; \ rtcout.release()
|
|
Value: rtcout.acquire(); \ rtcout.level(LogStream::RTL_INFO) << rtcout.printf fmt << std::endl;\ rtcout.release() If logging levels are ( INFO, NORMAL, DEBUG, TRACE, VERBOSE, PARANOID ), message will be output to log. |
|
Value: rtcout.acquire(); \ rtcout.level(LV) << rtcout.printf fmt << std::endl; \ rtcout.release()
|
|
Value: rtcout.acquire(); \ rtcout.level(LogStream::RTL_NORMAL) << rtcout.printf fmt << std::endl;\ rtcout.release() If logging levels are ( NORMAL, DEBUG, TRACE, VERBOSE, PARANOID ), message will be output to log. |
|
Value: rtcout.acquire(); \ rtcout.level(LogStream::RTL_PARANOID) << rtcout.printf fmt << std::endl; \ rtcout.release() If logging levels are ( PARANOID ), message will be output to log. |
|
Value: rtcout.acquire(); \ rtcout.level(LogStream::RTL_TRACE) << rtcout.printf fmt << std::endl; \ rtcout.release() If logging levels are ( TRACE, VERBOSE, PARANOID ), message will be output to log. |
|
Value: rtcout.acquire(); \ rtcout.level(LogStream::RTL_VERBOSE) << rtcout.printf fmt << std::endl; \ rtcout.release() If logging levels are ( VERBOSE, PARANOID ), message will be output to log. |
|
Value: rtcout.acquire(); \ rtcout.level(LogStream::RTL_WARN) << rtcout.printf fmt << std::endl;\ rtcout.release() If logging levels are ( WARN, INFO, NORMAL, DEBUG, TRACE, VERBOSE, PARANOID ), message will be output to log. |
|
|
|
|
|
|
|
|