| 123 | |
| 124 | static IOHANDLE logfile = 0; |
| 125 | static void logger_file(const char *line) |
| 126 | { |
| 127 | io_write(logfile, line, strlen(line)); |
| 128 | io_write_newline(logfile); |
| 129 | io_flush(logfile); |
| 130 | } |
| 131 | |
| 132 | void dbg_logger_stdout() { dbg_logger(logger_stdout); } |
| 133 | void dbg_logger_debugger() { dbg_logger(logger_debugger); } |
nothing calls this directly
no test coverage detected