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

SysSetAbortCallback

SysSetAbortCallback Description Set a custom callback function for SysAbort. If no callback is set, SysAbort will call the standard abort() function.

Read More

LOG_INFO

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

Read More

SysTerminateProcess

SysTerminateProcess Description Terminate a running process forcefully.

Read More