Log a message. A newline will be appended.
| 481 | |
| 482 | // Log a message. A newline will be appended. |
| 483 | void log(loglevel_t lvl, const char *msg) noexcept |
| 484 | { |
| 485 | do_log(lvl, true, "dinit: ", msg, "\n"); |
| 486 | } |
| 487 | |
| 488 | void log(loglevel_t lvl, bool to_cons, const char *msg) noexcept |
| 489 | { |
no test coverage detected