Lines Matching refs:LogLevel
85 public static void SetLogLevel(ILoggerBackend backend, LogLevel level, int sourceId) in SetLogLevel()
91 public static void Log(LogLevel type, string message, params object[] args) in Log()
96 public static void Log(LogLevel type, string message) in Log()
101 public static void Log(LogLevel type, string message, object arg1) in Log()
106 public static void Log(LogLevel type, string message, object arg1, object arg2) in Log()
111 public static void Log(LogLevel type, string message, object arg1, object arg2, object arg3) in Log()
118 LogAs(null, LogLevel.Error, message); in Error()
123 LogAs(null, LogLevel.Warning, message); in Warning()
128 LogAs(null, LogLevel.Info, message); in Info()
133 LogAs(null, LogLevel.Debug, message); in Debug()
138 LogAs(null, LogLevel.Noisy, message); in Noisy()
143 LogAs(e, LogLevel.Error, message, args); in ErrorLog()
148 LogAs(e, LogLevel.Error, message); in ErrorLog()
153 LogAs(e, LogLevel.Error, message, arg1); in ErrorLog()
158 LogAs(e, LogLevel.Error, message, arg1, arg2); in ErrorLog()
163 LogAs(e, LogLevel.Error, message, arg1, arg2, arg3); in ErrorLog()
168 LogAs(e, LogLevel.Warning, message, args); in WarningLog()
173 LogAs(e, LogLevel.Warning, message); in WarningLog()
178 LogAs(e, LogLevel.Warning, message, arg1); in WarningLog()
183 LogAs(e, LogLevel.Warning, message, arg1, arg2); in WarningLog()
188 LogAs(e, LogLevel.Warning, message, arg1, arg2, arg3); in WarningLog()
193 LogAs(e, LogLevel.Info, message, args); in InfoLog()
198 LogAs(e, LogLevel.Info, message); in InfoLog()
203 LogAs(e, LogLevel.Info, message, arg1); in InfoLog()
208 LogAs(e, LogLevel.Info, message, arg1, arg2); in InfoLog()
213 LogAs(e, LogLevel.Info, message, arg1, arg2, arg3); in InfoLog()
218 LogAs(e, LogLevel.Debug, message, args); in DebugLog()
223 LogAs(e, LogLevel.Debug, message); in DebugLog()
228 LogAs(e, LogLevel.Debug, message, arg1); in DebugLog()
233 LogAs(e, LogLevel.Debug, message, arg1, arg2); in DebugLog()
238 LogAs(e, LogLevel.Debug, message, arg1, arg2, arg3); in DebugLog()
243 LogAs(e, LogLevel.Noisy, message, args); in NoisyLog()
248 LogAs(e, LogLevel.Noisy, message); in NoisyLog()
253 LogAs(e, LogLevel.Noisy, message, arg1); in NoisyLog()
258 LogAs(e, LogLevel.Noisy, message, arg1, arg2); in NoisyLog()
263 LogAs(e, LogLevel.Noisy, message, arg1, arg2, arg3); in NoisyLog()
266 …public static void Log(this IEmulationElement e, LogLevel type, string message, params object[] ar… in Log()
271 public static void Log(this IEmulationElement e, LogLevel type, string message) in Log()
276 public static void Log(this IEmulationElement e, LogLevel type, string message, object arg1) in Log()
281 …public static void Log(this IEmulationElement e, LogLevel type, string message, object arg1, objec… in Log()
286 …public static void Log(this IEmulationElement e, LogLevel type, string message, object arg1, objec… in Log()
291 public static void LogAs(object o, LogLevel type, string message, params object[] args) in LogAs()
307 public static void LogAs(object o, LogLevel type, string message) in LogAs()
320 public static void LogAs(object o, LogLevel type, string message, object arg1) in LogAs()
333 public static void LogAs(object o, LogLevel type, string message, object arg1, object arg2) in LogAs()
346 …public static void LogAs(object o, LogLevel type, string message, object arg1, object arg2, object… in LogAs()
372 public static void Trace(this object o, LogLevel type, string message = null, in Trace()
398 Trace(o, LogLevel.Info, message, lineNumber, caller, fileName); in Trace()
414 peripheral.Log(LogLevel.Warning, "Unhandled read from offset 0x{0:X}.", offset); in LogUnhandledRead()
419 …peripheral.Log(LogLevel.Warning, "Unhandled write to offset 0x{0:X}, value 0x{1:X}.", offset, valu… in LogUnhandledWrite()
424 public static readonly LogLevel DefaultLogLevel = LogLevel.Info;
437 private static LogLevel minLevel = DefaultLogLevel;
440 …ncurrentDictionary<BackendSourceIdPair, LogLevel> levels = new ConcurrentDictionary<BackendSourceI…
521 … public void ObjectInnerLog(object o, LogLevel type, string message, params object[] args) in ObjectInnerLog()