This commit is contained in:
bao-qian
2015-11-03 01:33:53 +00:00
parent fc6ac662cd
commit f5d3df65b0
4 changed files with 15 additions and 31 deletions

View File

@@ -1,8 +1,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using Wox.Infrastructure.Logger;
using Wox.Plugin;
namespace Wox.Infrastructure
{
@@ -24,9 +22,6 @@ namespace Wox.Infrastructure
_stopwatch.Stop();
long seconds = _stopwatch.ElapsedMilliseconds;
_stopwatch.Start();
string info = _name + " : " + _stopwatch.ElapsedMilliseconds + "ms";
Debug.WriteLine(info);
Log.Info(info);
return seconds;
}
}