Fix logger name and move logger to %APPDATA%

This commit is contained in:
bao-qian
2016-04-27 22:51:31 +01:00
parent dc3b01dc15
commit 5ab33e831d
4 changed files with 46 additions and 34 deletions

View File

@@ -2,9 +2,12 @@
namespace Wox.Infrastructure
{
static class SyntaxSuger<T>
static class Helper
{
public static T RequireNonNull(T obj)
/// <summary>
/// http://www.yinwang.org/blog-cn/2015/11/21/programming-philosophy
/// </summary>
public static T RequireNonNull<T>(this T obj)
{
if (obj == null)
{