mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
37 lines
912 B
C#
37 lines
912 B
C#
using System;
|
|
using Wox.Infrastructure.Logger;
|
|
|
|
namespace Wox.Infrastructure
|
|
{
|
|
public static class Stopwatch
|
|
{
|
|
/// <summary>
|
|
/// This stopwatch will appear only in Debug mode
|
|
/// </summary>
|
|
public static void Debug(string name, Action action)
|
|
{
|
|
#if DEBUG
|
|
Normal(name, action);
|
|
#else
|
|
action();
|
|
#endif
|
|
}
|
|
|
|
/// <summary>
|
|
/// This stopwatch will also appear only in Debug mode
|
|
/// </summary>
|
|
public static long Normal(string name, Action action)
|
|
{
|
|
var stopWatch = new System.Diagnostics.Stopwatch();
|
|
stopWatch.Start();
|
|
action();
|
|
stopWatch.Stop();
|
|
var milliseconds = stopWatch.ElapsedMilliseconds;
|
|
string info = $"{name} : {milliseconds}ms";
|
|
Log.Debug(info);
|
|
return milliseconds;
|
|
}
|
|
|
|
}
|
|
}
|