Avro.Logger.Logger C# (CSharp) Method

Logger() public method

public Logger ( ) : System
return 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)