Mono.Cecil.Inject.Logger.Log C# (CSharp) Method

Log() private method

private Log ( uint mask, string message ) : void
mask uint
message string
return void
        public static void Log(uint mask, string message)
        {
            if (IsSet(mask))
                LogOutput.Write(message);
        }