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

@@ -24,7 +24,7 @@ namespace Wox.Plugin.WebSearch.SuggestionSources
catch (WebException e)
{
Log.Warn("Can't get suggestion from google");
Log.Error(e);
Log.Exception(e);
return new List<string>(); ;
}
if (string.IsNullOrEmpty(result)) return new List<string>();
@@ -35,7 +35,7 @@ namespace Wox.Plugin.WebSearch.SuggestionSources
}
catch (JsonSerializationException e)
{
Log.Error(e);
Log.Exception(e);
return new List<string>();
}
if (json != null)