ConsoleLogger.cs 374 B

123456789101112131415161718
  1. 
  2. using System;
  3. namespace Quadarax.Foundation.Core.Logging
  4. {
  5. public class ConsoleLogger : ILogger
  6. {
  7. public ILog GetLogger(string loggerName)
  8. {
  9. return new ConsoleLog(loggerName);
  10. }
  11. public ILog GetLogger(Type loggerForType)
  12. {
  13. return new ConsoleLog(loggerForType);
  14. }
  15. }
  16. }