aboutsummaryrefslogtreecommitdiff
path: root/src/internal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal.cpp')
-rw-r--r--src/internal.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/internal.cpp b/src/internal.cpp
index 3f3d191e..41744d16 100644
--- a/src/internal.cpp
+++ b/src/internal.cpp
@@ -416,6 +416,16 @@ void proj_log_debug (PJ *P, const char *fmt, ...) {
va_end( args );
}
+/*****************************************************************************/
+void proj_context_log_debug (PJ_CONTEXT *ctx, const char *fmt, ...) {
+/******************************************************************************
+ For reporting debugging information.
+******************************************************************************/
+ va_list args;
+ va_start( args, fmt );
+ pj_vlog (ctx, PJ_LOG_DEBUG_MAJOR , fmt, args);
+ va_end( args );
+}
/*****************************************************************************/
void proj_log_trace (PJ *P, const char *fmt, ...) {