mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Improve logging for Win32 program lock acquisition
Added a debug log statement to indicate when the lock for querying Win32 programs is being acquired. This enhances granularity in logging, making it easier to distinguish between the acquisition of locks for Win32 and UWP programs. Improves traceability and debugging of the program's execution flow.
This commit is contained in:
parent
4cf942ac3a
commit
6e17d5d756
1 changed files with 1 additions and 0 deletions
|
|
@ -88,6 +88,7 @@ namespace Flow.Launcher.Plugin.Program
|
|||
{
|
||||
Context.API.LogDebug(ClassName, "Acquiring locks for querying programs");
|
||||
await _win32sLock.WaitAsync(token);
|
||||
Context.API.LogDebug(ClassName, "Acquiring locks for querying win32 programs");
|
||||
await _uwpsLock.WaitAsync(token);
|
||||
Context.API.LogDebug(ClassName, "Locks acquired for querying programs");
|
||||
try
|
||||
|
|
|
|||
Loading…
Reference in a new issue