LOG_INFO
- Macro
- August 22, 2025
Table of Contents
LOG_INFO
LOG_INFO
Description
Writes an informational log message. …[in] : Format string and arguments following printf-style syntax.
Success
Informational message written to log output
Failure
Logging fails silently (output not guaranteed)
Usage example (Cross-references)
- In
JSON.h:580
:
} \
\
LOG_INFO("User skipped reading of '{}' field in JSON object.", key); \
si = read_si; \
} \
- In
JSON.c:69
:
}
LOG_INFO("User skipped reading of '{}' field in JSON object.", key);
StrDeinit(&key);
- In
Io.c:272
:
if (!arg->writer || !arg->data) {
#if defined(_MSC_VER) || defined(__MSC_VER)
LOG_INFO("Using default writer for char, because MSVC is STUPID AF");
if (fmt_info.flags & FMT_FLAG_CHAR) {
arg->writer = (TypeSpecificWriter)_write_i8;
- In
Io.c:520
:
if (fmt_info.width > var_width) {
LOG_INFO("Number of bytes read as raw data exceeds variable width. Excess data will discarded.");
}
- In
MisraDoc.c:180
:
Scope(&output_path, StrDeinit, {
StrMerge(&output_path, &file_path);
LOG_INFO("{}", output_path);
StrReplaceZstr(&output_path, "/", "-", -1);
LOG_INFO("{}", output_path);
- In
MisraDoc.c:182
:
LOG_INFO("{}", output_path);
StrReplaceZstr(&output_path, "/", "-", -1);
LOG_INFO("{}", output_path);
Str md_code = StrInit();
- In
MisraDoc.c:207
:
// complete relative file path
StrPushFront(&output_path, '/');
LOG_INFO("{}", output_path);
StrPushFrontCstr(&output_path, project.build_dir.data, project.build_dir.length);
LOG_INFO("{}", output_path);
- In
MisraDoc.c:209
:
LOG_INFO("{}", output_path);
StrPushFrontCstr(&output_path, project.build_dir.data, project.build_dir.length);
LOG_INFO("{}", output_path);
StrReplaceZstr(&output_path, ".c", ".md", 1);
StrReplaceZstr(&output_path, ".h", ".md", 1);
- In
MisraDoc.c:212
:
StrReplaceZstr(&output_path, ".c", ".md", 1);
StrReplaceZstr(&output_path, ".h", ".md", 1);
LOG_INFO("{}\n\n", output_path);