Exemplo n.º 1
0
        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);
        }
Exemplo n.º 2
0
		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 );
		}