Skip to content

Commit

Permalink
MP1-5211: Core: HideVolumeOSDLib: FindOSDWindow(): If handle is not f…
Browse files Browse the repository at this point in the history
…ound, then log the event as debug instead of error
  • Loading branch information
epbk committed Mar 30, 2024
1 parent 6bc4cfb commit b38a396
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mediaportal/Core/Util/HideVolumeOSDLib.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ private IntPtr FindOSDWindow()
}
}

if (hwndRet == IntPtr.Zero)
{
Log.Error("HideVolumeOSD: OSD window not found!");
}
if (hwndRet == IntPtr.Zero)
{
Log.Debug("HideVolumeOSD: FindOSDWindow() OSD window not found!");
}

return hwndRet;
}
Expand Down

0 comments on commit b38a396

Please sign in to comment.