From 14328667986e1545c4a8d22c474eb6f87b20e93f Mon Sep 17 00:00:00 2001 From: bao-qian Date: Wed, 30 Nov 2016 01:15:15 +0000 Subject: [PATCH] add startup boundary to log --- Wox/App.xaml.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Wox/App.xaml.cs b/Wox/App.xaml.cs index 4a17a2fe1e..632db9c0d6 100644 --- a/Wox/App.xaml.cs +++ b/Wox/App.xaml.cs @@ -39,6 +39,7 @@ namespace Wox { Stopwatch.Normal("Startup Time", () => { + Log.Info("-------------------------- Begin Wox startup --------------------------"); RegisterDispatcherUnhandledException(); var settingVM = new SettingWindowViewModel(); @@ -61,6 +62,7 @@ namespace Wox AutoUpdates(); mainVM.MainWindowVisibility = _settings.HideOnStartup ? Visibility.Hidden : Visibility.Visible; + Log.Info("-------------------------- End Wox startup --------------------------"); }); }