summaryrefslogtreecommitdiff
path: root/slips/src/app/Marina/Infrastructure/Logging/Interfaces/ILog.cs
blob: 37d91d8d43a3600d9dcd21e66907a84f0003ae85 (plain)
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 );
	}
}