/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/Components/SimpleLogger.cs

http://github.com/philiplaureano/LinFu · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · 1bbbeee33a283618c010cfbabeeb8b6d MD5 · raw file

  1. using System;
  2. namespace CommonServiceLocator.AutofacAdapter.Components
  3. {
  4. public class SimpleLogger : ILogger
  5. {
  6. public void Log(string msg)
  7. {
  8. Console.WriteLine(msg);
  9. }
  10. }
  11. }