CL_LOGGER_DESTROY
void CL_LOGGER_DESTROY(Logger *logger);
This function will free the data related to the logger. The passed logger cannot be used after calling this function.
Usage
CL_Logger *logger = CL_LOGGER_CREATE("TEST", NULL, 1, stdout);
// ...
CL_LOGGER_DESTROY(logger);