PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ lwdebug()

void lwdebug ( int  level,
const char *  fmt,
  ... 
)

Write a debug message out.

Don't call this function directly, use the macros, LWDEBUG() or LWDEBUGF(), for efficiency.

Definition at line 203 of file lwutil.c.

204{
205 va_list ap;
206
207 va_start(ap, fmt);
208
209 /* Call the supplied function */
210 (*lwdebug_var)(level, fmt, ap);
211
212 va_end(ap);
213}