19 references to MessageLevel
Crossgen2Tasks (19)
CommonFilePulledFromSdkRepo\LogAdapter.cs (5)
22case MessageLevel.Error: 35case MessageLevel.Warning: 48case MessageLevel.HighImportance: 49case MessageLevel.NormalImportance: 50case MessageLevel.LowImportance:
CommonFilePulledFromSdkRepo\Logger.cs (9)
57=> Log(CreateMessage(MessageLevel.NormalImportance, format, args)); 63=> Log(CreateMessage(MessageLevel.Warning, format, args)); 66=> Log(CreateMessage(MessageLevel.Error, format, args)); 69=> Log(new Message(MessageLevel.Error, string.Format(format, args), code)); 73HasLoggedErrors |= message.Level == MessageLevel.Error; 79private static Message CreateMessage(MessageLevel level, string format, string[] args) 114private static void DebugThrowMissingOrIncorrectCode(string code, string message, MessageLevel level) 122case MessageLevel.Error: 123case MessageLevel.Warning:
CommonFilePulledFromSdkRepo\Message.cs (2)
8public readonly MessageLevel Level; 14MessageLevel level,
CommonFilePulledFromSdkRepo\MessageLevel.cs (3)
23public static MessageLevel ToLevel(this MessageImportance importance) 24=> (MessageLevel)(importance); 26public static MessageImportance ToImportance(this MessageLevel level)