minor adjustments

This commit is contained in:
Paddy Xu
2017-07-24 22:43:59 +03:00
parent f627011802
commit 3df710e1fc
3 changed files with 8 additions and 2 deletions

View File

@@ -55,7 +55,13 @@ namespace QuickLook
var can = false;
try
{
var timer = new Stopwatch();
timer.Start();
can = plugin.CanHandle(path);
timer.Stop();
Debug.WriteLine($"{plugin.GetType()}: {can}, {timer.ElapsedMilliseconds}ms");
}
catch (Exception)
{