public static void log(long code, string message, Exception exception) { if ((masks & code) == 0) { return; } ExceptionHolder holder = new ExceptionHolder(); holder.Message = message; holder.ExceptionObject = exception; log(code, holder); }
public static void log( long code, string message, Exception exception ) { if( (masks & code ) == 0 ) return; ExceptionHolder holder = new ExceptionHolder(); holder.Message = message; holder.ExceptionObject = exception; log( code, holder ); }