* Describes a log message found in the user sources by the original format * string provided, the file and line number of where the message occurred. */
| 35 | * string provided, the file and line number of where the message occurred. |
| 36 | */ |
| 37 | struct LogMetadata { |
| 38 | const char *fmtString; |
| 39 | const char *fileName; |
| 40 | uint32_t lineNumber; |
| 41 | NanoLog::LogLevel logLevel; |
| 42 | }; |
| 43 | |
| 44 | /** |
| 45 | * Size of the arrays below, defined by the number of unique LogIds in the |
nothing calls this directly
no outgoing calls
no test coverage detected