Avro.Logger.Logger C# (CSharp) 메소드

Logger() 공개 메소드

public Logger ( ) : System
리턴 System
        public Logger()
        {
            StackFrame frame = new StackFrame(1);
            MethodBase method = frame.GetMethod();
            _Type = method.DeclaringType;
#if(LOG4NET)
            _Log = log4net.LogManager.GetLogger(_Type);
#endif
        }
#if(LOG4NET)