Пример #1
0
 //***********************************************************************
 //*								pj_log()								*
 //***********************************************************************
 public static void pj_log(projCtx ctx, PJ_LOG level, string format, params object[] args)
 {
     if (level > ctx.debug_level)
     {
         return;
     }
     ctx.logger(ctx.app_data, level, string.Format(format, args));
 }
Пример #2
0
 //***********************************************************************
 //*								pj_log()								*
 //***********************************************************************
 public static void pj_log(projCtx ctx, PJ_LOG level, string format, params object[] args)
 {
     if(level>ctx.debug_level) return;
     ctx.logger(ctx.app_data, level, string.Format(format, args));
 }