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); } }