summaryrefslogtreecommitdiff
path: root/src/Notepad/Infrastructure/Logging/ILogger.cs
blob: ac7dd6ff7eecaab5101e5dab38d8c089a6471dd2 (plain)
1
2
3
4
5
6
7
8
using System;

namespace Notepad.Infrastructure.Logging {
    public interface ILogger {
        void Informational(string formattedString, params object[] arguments);
        void Error(Exception e);
    }
}