Classes | Macros
ULogger.h File Reference

ULogger class and convenient macros. More...

#include "find_object/FindObjectExp.h"
#include "find_object/utilite/UMutex.h"
#include "find_object/utilite/UDestroyer.h"
#include <stdio.h>
#include <time.h>
#include <string>
#include <vector>
#include <stdarg.h>
Include dependency graph for ULogger.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ULogger
 

Macros

#define UASSERT(condition)   if(!(condition)) ULogger::write(ULogger::kFatal, __FILE__, __LINE__, __FUNCTION__, "Condition (%s) not met!", #condition)
 
#define UASSERT_MSG(condition, msg_str)   if(!(condition)) ULogger::write(ULogger::kFatal, __FILE__, __LINE__, __FUNCTION__, "Condition (%s) not met! [%s]", #condition, msg_str)
 
#define UDEBUG(...)   ULOGGER_DEBUG(__VA_ARGS__)
 
#define UERROR(...)   ULOGGER_ERROR(__VA_ARGS__)
 
#define UFATAL(...)   ULOGGER_FATAL(__VA_ARGS__)
 
#define UINFO(...)   ULOGGER_INFO(__VA_ARGS__)
 
#define ULOGGER_DEBUG(...)   ULOGGER_LOG(ULogger::kDebug, __VA_ARGS__)
 
#define ULOGGER_ERROR(...)   ULOGGER_LOG(ULogger::kError, __VA_ARGS__)
 
#define ULOGGER_FATAL(...)   ULOGGER_LOG(ULogger::kFatal, __VA_ARGS__)
 
#define ULOGGER_INFO(...)   ULOGGER_LOG(ULogger::kInfo, __VA_ARGS__)
 
#define ULOGGER_LOG(level, ...)   ULogger::write(level, __FILE__, __LINE__, __FUNCTION__, __VA_ARGS__)
 
#define ULOGGER_WARN(...)   ULOGGER_LOG(ULogger::kWarning, __VA_ARGS__)
 
#define UWARN(...)   ULOGGER_WARN(__VA_ARGS__)
 

Detailed Description

ULogger class and convenient macros.

This contains macros useful for logging a message anywhere in the application. Once the ULogger is set, use these macros like a printf to print debug messages.

Definition in file ULogger.h.

Macro Definition Documentation

#define UASSERT (   condition)    if(!(condition)) ULogger::write(ULogger::kFatal, __FILE__, __LINE__, __FUNCTION__, "Condition (%s) not met!", #condition)

Print a fatal error level message in the logger if condition is not met. The application will exit on fatal error. Format is the same as a printf:

1 UASSERT(a!=42, "This is a fatal error message with the number %d", 42);
#define UASSERT_MSG (   condition,
  msg_str 
)    if(!(condition)) ULogger::write(ULogger::kFatal, __FILE__, __LINE__, __FUNCTION__, "Condition (%s) not met! [%s]", #condition, msg_str)

Definition at line 67 of file ULogger.h.

#define UDEBUG (   ...)    ULOGGER_DEBUG(__VA_ARGS__)

Print a debug level message in the logger. Format is the same as a printf:

1 UDEBUG("This is a debug message with the number %d", 42);
#define UERROR (   ...)    ULOGGER_ERROR(__VA_ARGS__)

Print an error level message in the logger. Format is the same as a printf:

1 UERROR("This is an error message with the number %d", 42);
#define UFATAL (   ...)    ULOGGER_FATAL(__VA_ARGS__)

Print a fatal error level message in the logger. The application will exit on fatal error. Format is the same as a printf:

1 UFATAL("This is a fatal error message with the number %d", 42);
#define UINFO (   ...)    ULOGGER_INFO(__VA_ARGS__)

Print a information level message in the logger. Format is the same as a printf:

1 UINFO("This is a information message with the number %d", 42);
#define ULOGGER_DEBUG (   ...)    ULOGGER_LOG(ULogger::kDebug, __VA_ARGS__)

Definition at line 54 of file ULogger.h.

#define ULOGGER_ERROR (   ...)    ULOGGER_LOG(ULogger::kError, __VA_ARGS__)

Definition at line 57 of file ULogger.h.

#define ULOGGER_FATAL (   ...)    ULOGGER_LOG(ULogger::kFatal, __VA_ARGS__)

Definition at line 58 of file ULogger.h.

#define ULOGGER_INFO (   ...)    ULOGGER_LOG(ULogger::kInfo, __VA_ARGS__)

Definition at line 55 of file ULogger.h.

#define ULOGGER_LOG (   level,
  ... 
)    ULogger::write(level, __FILE__, __LINE__, __FUNCTION__, __VA_ARGS__)

Definition at line 52 of file ULogger.h.

#define ULOGGER_WARN (   ...)    ULOGGER_LOG(ULogger::kWarning, __VA_ARGS__)

Definition at line 56 of file ULogger.h.

#define UWARN (   ...)    ULOGGER_WARN(__VA_ARGS__)

Print a warning level message in the logger. Format is the same as a printf:

1 UWARN("This is a warning message with the number %d", 42);


find_object_2d
Author(s): Mathieu Labbe
autogenerated on Thu Jun 6 2019 19:22:26