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

UnsetMask() public static method

Unsets the log mask on so that the log wouldn't output messages with the given mask.
public static UnsetMask ( uint mask ) : void
mask uint The mask to unset.
return void
        public static void UnsetMask(uint mask)
        {
            logMask &= ~mask;
        }
    }