[hyena] Log: fix mistake in previous commit that was causing compile warnings



commit 0c17305e2bd98f6cd6408ee011661e3e41f3c8ea
Author: Andrés G. Aragoneses <knocte gmail com>
Date:   Thu Jul 17 13:53:52 2014 +0200

    Log: fix mistake in previous commit that was causing compile warnings

 Hyena/Hyena/Log.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/Hyena/Hyena/Log.cs b/Hyena/Hyena/Log.cs
index e0b047f..75a6c51 100644
--- a/Hyena/Hyena/Log.cs
+++ b/Hyena/Hyena/Log.cs
@@ -354,7 +354,7 @@ namespace Hyena
 
         public static void Warning (Exception e)
         {
-            Exception (null, e);
+            Warning (null, e);
         }
 
         public static void Warning (string message, Exception e)
@@ -398,7 +398,7 @@ namespace Hyena
 
         public static void Error (Exception e)
         {
-            Exception (null, e);
+            Error (null, e);
         }
 
         public static void Error (string message, Exception e)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]