summaryrefslogtreecommitdiff
path: root/lib/infrastructure/logging/Logger.cs
blob: 4cbc732ff45888d0a968b2f120c04c2a4e96b7b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace jive.infrastructure.logging
{
  public interface Logger
  {
    void informational(string formatted_string, params object[] arguments);
    void debug(string formatted_string, params object[] arguments);
    void error(Exception e);
  }
}