Move namespace

This commit is contained in:
bao-qian
2015-11-09 01:32:33 +00:00
parent 60f06f97fa
commit da5a930e89
21 changed files with 30 additions and 33 deletions

View File

@@ -1,6 +1,4 @@
using System;
using NLog;
using Wox.Core.Exception;
using NLog;
namespace Wox.Infrastructure.Logger
{
@@ -8,7 +6,7 @@ namespace Wox.Infrastructure.Logger
{
private static NLog.Logger logger = LogManager.GetCurrentClassLogger();
public static void Error(Exception e)
public static void Error(System.Exception e)
{
#if DEBUG
throw e;
@@ -35,7 +33,7 @@ namespace Wox.Infrastructure.Logger
logger.Warn(msg);
}
public static void Fatal(Exception e)
public static void Fatal(System.Exception e)
{
#if DEBUG
throw e;