A class that allows to output text to different destinations during runtime. More...
#include <log.hpp>
Public Types | |
enum | Category { General = 0 , ConnectionManagerTrace , AbstractServiceTrace , WorkQueueTrace , NetworkListenerTrace , LogCategoryCount } |
Log categories that can be enabled and disabled at runtime Used now only when logging traces. More... | |
enum | Destination { File = 0x1 , Debugger = 0x2 , StandardOutput = 0x4 , Callback = 0x8 , Diagnostics = 0x8000 } |
Type of destination where log is outputted. More... | |
typedef bitset< LogCategoryCount > | LogActiveCategories |
Container for active log categories. | |
typedef function< void(const string &message) | LogCallbackFunction) |
Callback function, invoked when query is completed. | |
typedef function< void(int level, const string &stamp, const string &tag, const string &message) | LogDiagnosticsCallbackFunction) |
callback function - invoked for each and every log line to be written. | |
Public Member Functions | |
Log () | |
Constructor. | |
~Log () | |
Destructor. | |
Static Public Member Functions | |
static bool | categoryEnabled (Log::Category category) |
Is log category enabled. | |
static void | disableCategory (Log::Category category) |
Disable logging category. | |
static void | enableCategory (Log::Category category) |
Enable logging category. | |
static int | getDestination () |
Retrieves current log destination flags. | |
static LogLevel | getLevel () |
Retrieves current logging level, log messages will be ignored if they don't meet this level. | |
static int | getLevelEx () |
Retrieves current log level. | |
static uint32_t | getLoggedFeatures () |
Retrieve the logged features. | |
static Log & | getSingleton () |
Access to singleton instance of the logger. | |
static void | pushLogger (kanzi::AbstractLogger *loggerInstance) |
Adds an user specific logger. | |
static void | setCallback (LogCallbackFunction callback) |
Sets callback for log output. | |
static void | setDestination (int destination) |
Sets log destination. | |
static void | setDiagnosticsCallback (LogDiagnosticsCallbackFunction callback) |
sets a diagnostics callback function that get(s) called for each and every log write. | |
static void | setLevel (LogLevel level) |
Sets logging level, log messages will be ignored if they don't meet this level. | |
static void | setLevelEx (int level) |
Sets logging level. | |
static void | setLoggedFeatures (uint32_t features) |
Configure the logged features. | |
Protected Member Functions | |
void | setDestinationInternal (int flags) |
Sets the destination. | |
A class that allows to output text to different destinations during runtime.
typedef bitset<LogCategoryCount> kanzi::connect::Log::LogActiveCategories |
Container for active log categories.
typedef function<void(const string& message) kanzi::connect::Log::LogCallbackFunction) |
Callback function, invoked when query is completed.
typedef function<void(int level, const string& stamp, const string& tag, const string& message) kanzi::connect::Log::LogDiagnosticsCallbackFunction) |
callback function - invoked for each and every log line to be written.
Mainly used by the diagnostics functionality.
Log categories that can be enabled and disabled at runtime Used now only when logging traces.
Enumerator | |
---|---|
General | General category, is now always enabled. |
ConnectionManagerTrace | Connection Manager traces. |
AbstractServiceTrace | Abstract Service traces. |
WorkQueueTrace | Work Queue traces. |
NetworkListenerTrace | Network Listener traces. |
LogCategoryCount | This must be last item, should contain count of items in this enum! |
kanzi::connect::Log::Log | ( | ) |
Constructor.
kanzi::connect::Log::~Log | ( | ) |
Destructor.
|
static |
Is log category enabled.
|
static |
Disable logging category.
See Log::Category for available categories.
category | the log category |
|
static |
Enable logging category.
See Log::Category for available categories.
category | the log category |
|
static |
Retrieves current log destination flags.
|
static |
Retrieves current logging level, log messages will be ignored if they don't meet this level.
|
static |
Retrieves current log level.
Intended to be used from external language bindings (android).
|
static |
Retrieve the logged features.
|
static |
Access to singleton instance of the logger.
|
static |
Adds an user specific logger.
loggerInstance | the logger to add. Ownership of the pointer transfers. |
|
static |
Sets callback for log output.
callback | Log callback function, that is invoked whenever theres a new log message. |
|
static |
Sets log destination.
destination | Log destination, can be a combination of multiple destinations (ie. Debugger|StandardOutput). |
|
protected |
Sets the destination.
flags | new destinations to set. |
|
static |
sets a diagnostics callback function that get(s) called for each and every log write.
callback | pointer to functor object. |
|
static |
Sets logging level, log messages will be ignored if they don't meet this level.
level | New log level. |
|
static |
Sets logging level.
Intended to be used from external language bindings (android).
level | new level. |
|
static |
Configure the logged features.
features | bitmaps of LoggerBase::Feature* flags. |