Log first change exception

This commit is contained in:
bao-qian
2016-05-15 17:03:06 +01:00
parent 87497d2d09
commit cf9c41f437
20 changed files with 92 additions and 71 deletions

View File

@@ -29,7 +29,7 @@ namespace Wox.Core.Resource
}
catch (Exception e)
{
Log.Error(e);
Log.Exception(e);
}
}
}
@@ -117,7 +117,7 @@ namespace Wox.Core.Resource
catch (Exception e)
{
var woxPluginException = new WoxPluginException(pluginPair.Metadata.Name, "Update Plugin metadata translation failed:", e);
Log.Error(woxPluginException);
Log.Exception(woxPluginException);
}
}

View File

@@ -36,7 +36,7 @@ namespace Wox.Core.Resource
}
catch (Exception e)
{
Log.Error(e);
Log.Exception(e);
}
}
}