1#ifndef Cpl_Logging_Api_h_
2#define Cpl_Logging_Api_h_
15#include "colony_config.h"
28#ifndef OPTION_CPL_LOGGING_MIN_QUEUE_SPACE
29#define OPTION_CPL_LOGGING_MIN_QUEUE_SPACE 3
45 uint32_t categoryIdForQueueOverflow,
46 const char* categoryQueueOverflowText,
47 uint16_t messageIdForQueueOverflow,
48 const char* messageQueueOverflowText )
noexcept;
141template <class CATEGORY_ID, class MESSAGE_ID>
142void vlogf( CATEGORY_ID catId, MESSAGE_ID msgId, const
char* msgTextFormat, va_list ap ) noexcept
158 uint16_t messageIdNumericValue,
This file contains private (i.e.
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
bool getIDStrings(uint32_t categoryNumericValue, uint16_t messageIdNumericValue, Cpl::Text::String &dstCategoryString, Cpl::Text::String &dstMessageString) noexcept
This method is implemented the application - it converts numeric values for the Category and Message ...
void setCategoryMask(uint32_t newMask) noexcept
This method is used to explicit set the category mask (i.e.
void vlogf(CATEGORY_ID catId, MESSAGE_ID msgId, const char *msgTextFormat, va_list ap) noexcept
This method is used to create log entry.
Definition Api.h:142
uint32_t disableCategory(uint32_t categoryMask) noexcept
This method is used to disable one or more log Categories.
void shutdown() noexcept
This method is used to shutdown/stop the Logging framework.
uint32_t enableCategory(uint32_t categoryMask) noexcept
This method is used to enable one or more log Categories.
void createAndAddLogEntry_(uint32_t category, const char *catIdText, uint16_t msgId, const char *msgIdText, const char *format, va_list ap) noexcept
This method is used to create the log entry and insert into the entry queue.
void initialize(Cpl::Container::RingBufferMP< EntryData_T > &logEntryFIFO, uint32_t categoryIdForQueueOverflow, const char *categoryQueueOverflowText, uint16_t messageIdForQueueOverflow, const char *messageQueueOverflowText) noexcept
This method is used to initialize the Logging framework.
uint32_t getCategoryEnabledMask() noexcept
This method returns the current enabled/disabled Category mask.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20