diff options
Diffstat (limited to 'lib/infrastructure/logging/Logger.cs')
| -rw-r--r-- | lib/infrastructure/logging/Logger.cs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/infrastructure/logging/Logger.cs b/lib/infrastructure/logging/Logger.cs index f5dd7a6..4cbc732 100644 --- a/lib/infrastructure/logging/Logger.cs +++ b/lib/infrastructure/logging/Logger.cs @@ -1,11 +1,11 @@ -using System;
-
-namespace gorilla.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);
- }
-}
\ No newline at end of file +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); + } +} |
