| 166 | } |
| 167 | |
| 168 | void openhd::log::log_to_kernel(const std::string& message) { |
| 169 | OHDUtil::run_command(fmt::format("echo \"{}\" > /dev/kmsg", message), {}, |
| 170 | false); |
| 171 | } |
| 172 | |
| 173 | void openhd::log::debug_log(const std::string& message) { |
| 174 | openhd::log::get_default()->debug(message); |
nothing calls this directly
no outgoing calls
no test coverage detected