Skip to content

Commit

Permalink
added missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
oocx committed Nov 17, 2015
1 parent 415f92e commit 7cb9c53
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -194,3 +194,4 @@ FakesAssemblies/

# Visual Studio 6 workspace options file
*.opt
/acme-key.xml
13 changes: 13 additions & 0 deletions 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);
}
}

0 comments on commit 7cb9c53

Please sign in to comment.