You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
479 B

  1. using System;
  2. namespace MQTTnet.Diagnostics
  3. {
  4. public interface IMqttNetChildLogger
  5. {
  6. IMqttNetChildLogger CreateChildLogger(string source = null);
  7. void Verbose(string message, params object[] parameters);
  8. void Info(string message, params object[] parameters);
  9. void Warning(Exception exception, string message, params object[] parameters);
  10. void Error(Exception exception, string message, params object[] parameters);
  11. }
  12. }