LOG_SYS_INFO

Table of Contents

LOG_SYS_INFO

Description

Writes an informational log message along with errno explanation appended at then end of final string.

Info

Think of this like perror() but as LOG macros

Success

Informational message written to log output

Failure

Logging fails silently (output not guaranteed)

Usage example (Cross-references)

No external code usages found in the scanned files.

Share :

Related Posts

WriteFmtLn

WriteFmtLn Description Write formatted output to the standard output stream (stdout) followed by a newline. This is a convenience macro calling FWriteFmtLn with stdout.

Read More

FWriteFmtLn

FWriteFmtLn Description Write formatted output to a file stream followed by a newline character. This macro internally uses StrWriteFmtInternal to format the string and then writes it to the stream followed by a newline.

Read More

LOG_ERROR

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

Read More