|
C++ Server-Side SDK
LaunchDarkly SDK
|
#include <logging_builder.h>
Public Attributes | |
| EnabledFn | Enabled |
| WriteFn | Write |
| void * | UserData |
Defines a logging interface suitable for use with SDK configuration.
| EnabledFn LDLogBackend::Enabled |
Check if the specified log level is enabled. Must be thread safe.
| level | The log level to check. |
| void* LDLogBackend::UserData |
UserData is forwarded into both Enabled and Write.
| WriteFn LDLogBackend::Write |
Write a message to the specified level. The message pointer is valid only for the duration of this function call. Must be thread safe.
| level | The level to write the message to. |
| message | The message to write. |