master
1using System;
2
3namespace Notepad.Infrastructure.Logging {
4    public interface ILogger {
5        void Informational(string formattedString, params object[] arguments);
6        void Error(Exception e);
7    }
8}