/src/CommonServiceLocator/CommonServiceLocator.LinFuAdapter.Tests/SimpleLogger.cs
http://github.com/philiplaureano/LinFu · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · d2ea89908d409c96bcb7cd0a48d2e3d8 MD5 · raw file
- using System;
- namespace CommonServiceLocator.LinFuAdapter.Components
- {
- public class SimpleLogger : ILogger
- {
- public void Log(string msg)
- {
- Console.WriteLine(msg);
- }
- }
- }