ILogger.cs 193 B

12345678910
  1. using System;
  2. namespace Quadarax.Foundation.Core.Logging
  3. {
  4. public interface ILogger
  5. {
  6. ILog GetLogger(string loggerName);
  7. ILog GetLogger(Type loggerForType);
  8. }
  9. }