25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

23 satır
534 B

  1. using Microsoft.Extensions.Logging;
  2. using System;
  3. namespace MQTTnet.Core.Tests
  4. {
  5. public class TestLogger<T> : ILogger<T>
  6. {
  7. public IDisposable BeginScope<TState>(TState state)
  8. {
  9. throw new NotImplementedException();
  10. }
  11. public bool IsEnabled(LogLevel logLevel)
  12. {
  13. return true;
  14. }
  15. public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
  16. {
  17. }
  18. }
  19. }