369 #ifndef LEGATO_LOG_INCLUDE_GUARD
370 #define LEGATO_LOG_INCLUDE_GUARD
394 typedef struct le_log_Session* le_log_SessionRef_t;
396 typedef struct le_log_Trace* le_log_TraceRef_t;
401 const le_log_TraceRef_t traceRef,
402 le_log_SessionRef_t logSession,
403 const char* filenamePtr,
404 const char* functionNamePtr,
405 const unsigned int lineNumber,
406 const char* formatPtr,
408 ) __attribute__ ((format (printf, 7, 8)));
410 le_log_TraceRef_t _le_log_GetTraceRef
412 le_log_SessionRef_t logSession,
416 void _le_log_SetFilterLevel
418 le_log_SessionRef_t logSession,
434 LE_SHARED le_log_SessionRef_t LE_LOG_SESSION;
458 #define _LE_LOG_MSG(level, formatString, ...) \
460 if ((LE_LOG_LEVEL_FILTER_PTR == NULL) || (level >= *LE_LOG_LEVEL_FILTER_PTR)) \
461 _le_log_Send(level, NULL, LE_LOG_SESSION, __FILE__, __func__, __LINE__, \
462 formatString, ##__VA_ARGS__); \
476 #define LE_DEBUG(formatString, ...) _LE_LOG_MSG(LE_LOG_DEBUG, formatString, ##__VA_ARGS__)
478 #define LE_INFO(formatString, ...) _LE_LOG_MSG(LE_LOG_INFO, formatString, ##__VA_ARGS__)
480 #define LE_WARN(formatString, ...) _LE_LOG_MSG(LE_LOG_WARN, formatString, ##__VA_ARGS__)
482 #define LE_ERROR(formatString, ...) _LE_LOG_MSG(LE_LOG_ERR, formatString, ##__VA_ARGS__)
484 #define LE_CRIT(formatString, ...) _LE_LOG_MSG(LE_LOG_CRIT, formatString, ##__VA_ARGS__)
486 #define LE_EMERG(formatString, ...) _LE_LOG_MSG(LE_LOG_EMERG, formatString, ##__VA_ARGS__)
501 #define LE_DEBUG_IF(condition, formatString, ...) \
502 if (condition) { _LE_LOG_MSG(LE_LOG_DEBUG, formatString, ##__VA_ARGS__); }
504 #define LE_INFO_IF(condition, formatString, ...) \
505 if (condition) { _LE_LOG_MSG(LE_LOG_INFO, formatString, ##__VA_ARGS__); }
507 #define LE_WARN_IF(condition, formatString, ...) \
508 if (condition) { _LE_LOG_MSG(LE_LOG_WARN, formatString, ##__VA_ARGS__); }
510 #define LE_ERROR_IF(condition, formatString, ...) \
511 if (condition) { _LE_LOG_MSG(LE_LOG_ERR, formatString, ##__VA_ARGS__); }
513 #define LE_CRIT_IF(condition, formatString, ...) \
514 if (condition) { _LE_LOG_MSG(LE_LOG_CRIT, formatString, ##__VA_ARGS__); }
516 #define LE_EMERG_IF(condition, formatString, ...) \
517 if (condition) { _LE_LOG_MSG(LE_LOG_EMERG, formatString, ##__VA_ARGS__); }
529 #define LE_FATAL(formatString, ...) \
530 { LE_EMERG(formatString, ##__VA_ARGS__); exit(EXIT_FAILURE); }
542 #define LE_FATAL_IF(condition, formatString, ...) \
543 if (condition) { LE_FATAL(formatString, ##__VA_ARGS__) }
552 #define LE_ASSERT(condition) \
553 if (!(condition)) { LE_FATAL("Assert Failed: '%s'", #condition) }
568 #define LE_RESULT_TXT(v) _le_log_GetResultCodeString(v)
586 #define LE_IS_TRACE_ENABLED(traceRef) (le_log_IsTraceEnabled(traceRef))
594 #define LE_TRACE(traceRef, string, ...) \
595 if (le_log_IsTraceEnabled(traceRef)) \
597 _le_log_Send((le_log_Level_t)-1, \
617 const char* keywordPtr
620 return _le_log_GetTraceRef(LE_LOG_SESSION, keywordPtr);
633 const le_log_TraceRef_t traceRef
636 return *((
bool*)traceRef);
654 _le_log_SetFilterLevel(LE_LOG_SESSION, level);
668 if (LE_LOG_LEVEL_FILTER_PTR != NULL)
670 return *LE_LOG_LEVEL_FILTER_PTR;
689 const le_log_TraceRef_t traceRef
692 *((
bool*)traceRef) =
true;
706 const le_log_TraceRef_t traceRef
709 *((
bool*)traceRef) =
false;
714 #endif // LEGATO_LOG_INCLUDE_GUARD
static le_log_TraceRef_t le_log_GetTraceRef(const char *keywordPtr)
Definition: le_log.h:616
#define LE_SHARED
Definition: le_basics.h:239
le_result_t
Definition: le_basics.h:35
static void le_log_EnableTrace(const le_log_TraceRef_t traceRef)
Definition: le_log.h:688
static le_log_Level_t le_log_GetFilterLevel(void)
Definition: le_log.h:664
Warning. Possibly indicates a problem. Should be addressed.
Definition: le_log.h:381
le_log_Level_t
Definition: le_log.h:377
Debug message.
Definition: le_log.h:379
static void le_log_SetFilterLevel(le_log_Level_t level)
Definition: le_log.h:650
const char * _le_log_GetResultCodeString(le_result_t resultCode)
Function that does the real work of translating result codes. See LE_RESULT_TXT.
Informational message. Normally expected.
Definition: le_log.h:380
Emergency. A fatal error has occurred. A process is being terminated.
Definition: le_log.h:386
static bool le_log_IsTraceEnabled(const le_log_TraceRef_t traceRef)
Definition: le_log.h:632
static void le_log_DisableTrace(const le_log_TraceRef_t traceRef)
Definition: le_log.h:705