main
 1using System;
 2
 3namespace jive
 4{
 5  public interface Logger
 6  {
 7    void informational(string formatted_string, params object[] arguments);
 8    void debug(string formatted_string, params object[] arguments);
 9    void error(Exception e);
10  }
11}