void logger_destroy(logger_t **l);
Destroy a previously created public logger_t handle of the logger port.
l == NULL, the function does nothing.l != NULL and *l == NULL, the function does nothing.*l.*l is set to NULL.logger_destroy() is the matching destructor for handles created by logger_create().NULL handle pointer or an already-NULL handle is accepted as a no-op.