mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix log message issue
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
da8a69038a
commit
f5de5d70db
1 changed files with 2 additions and 3 deletions
|
|
@ -254,9 +254,8 @@ namespace Flow.Launcher.Plugin.Program
|
|||
_uwpsCount = _uwps.Count;
|
||||
_uwpsLock.Release();
|
||||
});
|
||||
Context.API.LogInfo(ClassName, "Number of preload win32 programs <{_win32sCount}>");
|
||||
Context.API.LogInfo(ClassName, "Number of preload uwps <{_uwpsCount}>");
|
||||
|
||||
Context.API.LogInfo(ClassName, $"Number of preload win32 programs <{_win32sCount}>");
|
||||
Context.API.LogInfo(ClassName, $"Number of preload uwps <{_uwpsCount}>");
|
||||
var cacheEmpty = _win32sCount == 0 || _uwpsCount == 0;
|
||||
|
||||
if (cacheEmpty || _settings.LastIndexTime.AddHours(30) < DateTime.Now)
|
||||
|
|
|
|||
Loading…
Reference in a new issue