diff options
Diffstat (limited to 'lib/infrastructure/logging/LoggingExtensions.cs')
| -rw-r--r-- | lib/infrastructure/logging/LoggingExtensions.cs | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/lib/infrastructure/logging/LoggingExtensions.cs b/lib/infrastructure/logging/LoggingExtensions.cs index 90aaa19..29b8eeb 100644 --- a/lib/infrastructure/logging/LoggingExtensions.cs +++ b/lib/infrastructure/logging/LoggingExtensions.cs @@ -1,17 +1,17 @@ -using System;
-
-namespace gorilla.infrastructure.logging
-{
- public static class LoggingExtensions
- {
- public static Logger log<T>(this T item_to_log)
- {
- return Log.For(item_to_log);
- }
-
- public static void add_to_log(this Exception error_to_log)
- {
- Log.For(error_to_log).error(error_to_log);
- }
- }
-}
\ No newline at end of file +using System; + +namespace jive.infrastructure.logging +{ + public static class LoggingExtensions + { + public static Logger log<T>(this T item_to_log) + { + return Log.For(item_to_log); + } + + public static void add_to_log(this Exception error_to_log) + { + Log.For(error_to_log).error(error_to_log); + } + } +} |
