1 2 3 4 5 6 7
namespace Marina.Infrastructure.Logging.Interfaces { public interface ILog { void Informational( string message ); void Informational( string messageFormat, params object[] args ); void CriticalError( string messageFormat, params object[] args ); } }