fCraft.Logger.Logger C# (CSharp) Method

Logger() static private method

static private Logger ( ) : System.Reflection.Emit
return System.Reflection.Emit
        static Logger()
        {
            Enabled = true;
            int typeCount = Enum.GetNames( typeof( LogType ) ).Length;
            ConsoleOptions = new bool[typeCount];
            LogFileOptions = new bool[typeCount];
            for ( int i = 0; i < typeCount; i++ ) {
                ConsoleOptions[i] = true;
                LogFileOptions[i] = true;
            }
        }