LogDeinit

Table of Contents

LogDeinit

Description

Shut down logging subsystem and release resources

Success

All logging resources released

Failure

Some resources may leak (safe to call multiple times)

Usage example (Cross-references)

    
    
    void LogDeinit(void) {
    if (stderror && stderror != stderr) {
    fclose(stderror);
    VecDeinit(&entries);
    
    LogDeinit();
    return 0;
    }
    });
    
    LogDeinit();
    return 0;
    }

Share :

Related Posts

LOG_INFO

LOG_INFO Description Writes an informational log message. …[in] : Format string and arguments following printf-style syntax.

Read More

SysAbort

SysAbort Description Custom abort function that can be redirected for testing purposes. By default, this calls the standard abort() function. If a callback is set via SysSetAbortCallback, it calls the callback instead.

Read More

LogInit

LogInit Description Initialize logging subsystem

Read More