/
| 134 | |
| 135 | /*****************************************************************************/ |
| 136 | void proj_log_error(const PJ *P, const char *fmt, ...) { |
| 137 | /****************************************************************************** |
| 138 | For reporting the most severe events. |
| 139 | ******************************************************************************/ |
| 140 | va_list args; |
| 141 | va_start(args, fmt); |
| 142 | pj_vlog(pj_get_ctx((PJ *)P), PJ_LOG_ERROR, P, fmt, args); |
| 143 | va_end(args); |
| 144 | } |
| 145 | |
| 146 | /*****************************************************************************/ |
| 147 | void proj_log_debug(PJ *P, const char *fmt, ...) { |
no test coverage detected