From 7cb9c53735a77d59b23ada0fbe16c20a4114aa1d Mon Sep 17 00:00:00 2001 From: Mathias Raacke Date: Tue, 17 Nov 2015 22:40:27 +0100 Subject: [PATCH] added missing file --- .gitignore | 1 + src/Oocx.ACME.Common/ILog.cs | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 src/Oocx.ACME.Common/ILog.cs diff --git a/.gitignore b/.gitignore index 57a1574..85a2891 100644 --- a/.gitignore +++ b/.gitignore @@ -194,3 +194,4 @@ FakesAssemblies/ # Visual Studio 6 workspace options file *.opt +/acme-key.xml diff --git a/src/Oocx.ACME.Common/ILog.cs b/src/Oocx.ACME.Common/ILog.cs new file mode 100644 index 0000000..8c27a1d --- /dev/null +++ b/src/Oocx.ACME.Common/ILog.cs @@ -0,0 +1,13 @@ +namespace Oocx.ACME.Common +{ + public interface ILog + { + void Verbose(string message, params object[] args); + + void Info(string message, params object[] args); + + void Warning(string message, params object[] args); + + void Error(string message, params object[] args); + } +}