#include "Log.h"
#include "Field/FilePath.h"
 
Go to the source code of this file.
◆ LOG_DEBUG
      
        
          | #define LOG_DEBUG | 
          ( | 
           |           format,  | 
        
        
           | 
           | 
           |           ... ) | 
        
      
 
Value:Log::instance()->writeMessage(Log::DebugInfo, format, ##__VA_ARGS__)
 
Definition at line 17 of file Log.cpp.
 
 
◆ LOG_DISPLAY
      
        
          | #define LOG_DISPLAY | 
          ( | 
           |           format,  | 
        
        
           | 
           | 
           |           ... ) | 
        
      
 
Value:Log::instance()->writeMessage(Log::Display, format, ##__VA_ARGS__)
 
Definition at line 22 of file Log.cpp.
 
 
◆ LOG_ERROR
      
        
          | #define LOG_ERROR | 
          ( | 
           |           format,  | 
        
        
           | 
           | 
           |           ... ) | 
        
      
 
Value:Log::instance()->writeMessage(Log::Error, format, ##__VA_ARGS__)
 
Definition at line 19 of file Log.cpp.
 
 
◆ LOG_INFO
      
        
          | #define LOG_INFO | 
          ( | 
           |           format,  | 
        
        
           | 
           | 
           |           ... ) | 
        
      
 
Value:Log::instance()->writeMessage(Log::Info, format, ##__VA_ARGS__)
 
Definition at line 18 of file Log.cpp.
 
 
◆ LOG_USER
      
        
          | #define LOG_USER | 
          ( | 
           |           format,  | 
        
        
           | 
           | 
           |           ... ) | 
        
      
 
Value:Log::instance()->writeMessage(Log::User, format, ##__VA_ARGS__)
 
Definition at line 21 of file Log.cpp.
 
 
◆ LOG_WARN
      
        
          | #define LOG_WARN | 
          ( | 
           |           format,  | 
        
        
           | 
           | 
           |           ... ) | 
        
      
 
Value:Log::instance()->writeMessage(Log::Warning, format, ##__VA_ARGS__)
 
Definition at line 20 of file Log.cpp.