glog_init()
#
glog_init()
initializes the global logging system, setting up default log handlers and registering built-in log handler types.
Prototype
void glog_init(void);
Parameters
Key |
Type |
Description |
---|---|---|
|
|
This function does not take any parameters. |
Return Value
This function does not return a value.
Notes
This function ensures that the logging system is initialized only once. It registers built-in log handlers such as stdout
, file
, and udp
.
Prototype
// Not applicable in JS
Prototype
# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples