| 131 | |
| 132 | void dbg_logger_stdout() { dbg_logger(logger_stdout); } |
| 133 | void dbg_logger_debugger() { dbg_logger(logger_debugger); } |
| 134 | void dbg_logger_file(const char *filename) |
| 135 | { |
| 136 | logfile = io_open(filename, IOFLAG_WRITE); |
nothing calls this directly
no test coverage detected