Skip to content

Commit f5de5d7

Browse files
Jack251970Copilot
andauthored
Fix log message issue
Co-authored-by: Copilot <[email protected]>
1 parent da8a690 commit f5de5d7

File tree

1 file changed

+2
-3
lines changed
  • Plugins/Flow.Launcher.Plugin.Program

1 file changed

+2
-3
lines changed

Plugins/Flow.Launcher.Plugin.Program/Main.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,8 @@ static void MoveFile(string sourcePath, string destinationPath)
254254
_uwpsCount = _uwps.Count;
255255
_uwpsLock.Release();
256256
});
257-
Context.API.LogInfo(ClassName, "Number of preload win32 programs <{_win32sCount}>");
258-
Context.API.LogInfo(ClassName, "Number of preload uwps <{_uwpsCount}>");
259-
257+
Context.API.LogInfo(ClassName, $"Number of preload win32 programs <{_win32sCount}>");
258+
Context.API.LogInfo(ClassName, $"Number of preload uwps <{_uwpsCount}>");
260259
var cacheEmpty = _win32sCount == 0 || _uwpsCount == 0;
261260

262261
if (cacheEmpty || _settings.LastIndexTime.AddHours(30) < DateTime.Now)

0 commit comments

Comments
 (0)