/
| 143 | |
| 144 | /*****************************************************************************/ |
| 145 | void proj_log_debug (PJ *P, const char *fmt, ...) { |
| 146 | /****************************************************************************** |
| 147 | For reporting debugging information. |
| 148 | ******************************************************************************/ |
| 149 | va_list args; |
| 150 | va_start( args, fmt ); |
| 151 | pj_vlog (pj_get_ctx (P), PJ_LOG_DEBUG , add_short_name_prefix(P, fmt).c_str(), args); |
| 152 | va_end( args ); |
| 153 | } |
| 154 | |
| 155 | /*****************************************************************************/ |
| 156 | void proj_context_log_debug (PJ_CONTEXT *ctx, const char *fmt, ...) { |
no test coverage detected