Beispiel #1
0
    public static void CLog <T1, T2, T3, T4, T5, T6>(Object context, string fmt, T1 par1, T2 par2, T3 par3, T4 par4, T5 par5, T6 par6)
    {
#if ALLOW_LOG
        if (Debug.isDebugBuild)
        {
            string msg = string.Format(fmt, par1, par2, par3, par4, par5, par6);
            Dbg.CLog(context, msg);
        }
#endif
    }
Beispiel #2
0
    public static void CLog <T1, T2>(Object context, string fmt, T1 par1, T2 par2)
    {
#if ALLOW_LOG
        if (Debug.isDebugBuild)
        {
            string msg = string.Format(fmt, par1, par2);
            Dbg.CLog(context, msg);
        }
#endif
    }