diff options
Diffstat (limited to 'slips/src/app/Marina/Infrastructure/Logging/Interfaces/ILog.cs')
| -rw-r--r-- | slips/src/app/Marina/Infrastructure/Logging/Interfaces/ILog.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/slips/src/app/Marina/Infrastructure/Logging/Interfaces/ILog.cs b/slips/src/app/Marina/Infrastructure/Logging/Interfaces/ILog.cs new file mode 100644 index 0000000..37d91d8 --- /dev/null +++ b/slips/src/app/Marina/Infrastructure/Logging/Interfaces/ILog.cs @@ -0,0 +1,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 );
+ }
+}
\ No newline at end of file |
