* Describes a log message found in the user sources by the original format * string provided, the file where the log message occurred, and the line number */
| 19 | * string provided, the file where the log message occurred, and the line number |
| 20 | */ |
| 21 | struct LogMetadata { |
| 22 | const char *fmtString; |
| 23 | const char *fileName; |
| 24 | uint32_t lineNumber; |
| 25 | NanoLog::LogLevel logLevel; |
| 26 | }; |
| 27 | |
| 28 | // Start an empty namespace to enclose all the record(debug)/compress/decompress |
| 29 | // and support functions |
nothing calls this directly
no outgoing calls
no test coverage detected