mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
update exception message
This commit is contained in:
parent
f1badd6ae2
commit
75f5a81a31
1 changed files with 2 additions and 2 deletions
|
|
@ -422,7 +422,7 @@ namespace Flow.Launcher.ViewModel
|
|||
}
|
||||
catch(Exception e)
|
||||
{
|
||||
Log.Exception($"|MainViewModel|Exception when querying {plugin.Metadata.Name}", e);
|
||||
Log.Exception("MainViewModel", $"Exception when querying the plugin {plugin.Metadata.Name}", e, "QueryResults");
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
@ -442,7 +442,7 @@ namespace Flow.Launcher.ViewModel
|
|||
}
|
||||
}, currentCancellationToken).ContinueWith(t =>
|
||||
{
|
||||
Log.Exception("|MainViewModel|Error when querying plugin", t.Exception?.InnerException);
|
||||
Log.Exception("MainViewModel", "Error when querying plugins", t.Exception?.InnerException, "QueryResults");
|
||||
}, TaskContinuationOptions.OnlyOnFaulted);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue