Public Member Functions | |
virtual | ~UConsoleLogger () |
Protected Member Functions | |
UConsoleLogger () | |
![]() | |
void | _flush () |
ULogger () | |
virtual | ~ULogger () |
Private Member Functions | |
virtual void | _write (const char *msg, va_list arg) |
virtual void | _writeStr (const char *msg) |
Friends | |
class | ULogger |
Additional Inherited Members | |
![]() | |
enum | Level { kDebug, kInfo, kWarning, kError, kFatal } |
enum | Type { kTypeNoLog, kTypeConsole, kTypeFile } |
![]() | |
static ULogger::Level | eventLevel () |
static void | flush () |
static std::map< std::string, unsigned long > | getRegisteredThreads () |
static int | getTime (std::string &timeStr) |
static const std::set< unsigned long > & | getTreadIdFilter () |
static bool | isBuffered () |
static bool | isPrintColored () |
static bool | isPrintEndLine () |
static bool | isPrintLevel () |
static bool | isPrintThreadId () |
static bool | isPrintTime () |
static bool | isPrintWhere () |
static bool | isPrintWhereFullPath () |
static ULogger::Level | level () |
static void | registerCurrentThread (const std::string &name) |
static void | reset () |
static void | setBuffered (bool buffered) |
static void | setEventLevel (ULogger::Level eventSentLevel) |
static void | setLevel (ULogger::Level level) |
static void | setPrintColored (bool printColored) |
static void | setPrintEndline (bool printEndline) |
static void | setPrintLevel (bool printLevel) |
static void | setPrintThreadId (bool printThreadId) |
static void | setPrintTime (bool printTime) |
static void | setPrintWhere (bool printWhere) |
static void | setPrintWhereFullPath (bool printWhereFullPath) |
static void | setTreadIdFilter (const std::set< unsigned long > &ids) |
static void | setTreadIdFilter (const std::vector< std::string > &ids) |
static void | setType (Type type, const std::string &fileName=kDefaultLogFileName, bool append=true) |
static Type | type () |
static void | unregisterCurrentThread () |
static void | write (const char *msg,...) |
static void | write (ULogger::Level level, const char *file, int line, const char *function, const char *msg,...) |
![]() | |
static const std::string | kDefaultLogFileName = "./ULog.txt" |
![]() | |
static ULogger * | getInstance () |
![]() | |
static bool | append_ = true |
static std::string | logFileName_ |
This class is used to write logs in the console. This class cannot be directly used, use ULogger::setType() to console type to print in console and use macro UDEBUG(), UINFO()... to print messages.
Definition at line 75 of file ULogger.cpp.
|
inlinevirtual |
Definition at line 78 of file ULogger.cpp.
|
inlineprotected |
Definition at line 87 of file ULogger.cpp.
|
inlineprivatevirtual |
Reimplemented from ULogger.
Definition at line 90 of file ULogger.cpp.
|
inlineprivatevirtual |
Reimplemented from ULogger.
Definition at line 94 of file ULogger.cpp.
|
friend |
Only the Logger can create inherited loggers according to the Abstract factory patterns.
Definition at line 85 of file ULogger.cpp.