Small refactor to use common powertoys telemetry event source accross modules.

This commit is contained in:
ryanbodrug-microsoft
2020-05-05 09:23:31 -07:00
parent a9cc4dabb7
commit def0d7a519
15 changed files with 55 additions and 15 deletions

View File

@@ -1,4 +1,5 @@
using Microsoft.PowerLauncher.Telemetry;
using Microsoft.PowerToys.Telemetry;
using System.Drawing;
using System.Windows.Forms;
using System.Windows.Input;
@@ -26,7 +27,7 @@ namespace Wox.ViewModel
ActionName = Title
};
PowerLauncherTelemetry.Log.WriteEvent(eventData);
PowerToysTelemetry.Log.WriteEvent(eventData);
}
}
}