mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 01:25:58 +01:00
logs: Add file path to asset ERR log (#7336)
This commit is contained in:
parent
3b4aabe04c
commit
197f880790
1 changed files with 1 additions and 1 deletions
|
@ -2690,7 +2690,7 @@ void CHyprOpenGLImpl::createBGTextureForMonitor(CMonitor* pMonitor) {
|
|||
// check if wallpapers exist
|
||||
std::error_code err;
|
||||
if (!std::filesystem::exists(texPath, err)) {
|
||||
Debug::log(ERR, "createBGTextureForMonitor: failed, file doesn't exist or access denied, ec: {}", err.message());
|
||||
Debug::log(ERR, "createBGTextureForMonitor: failed, file \"{}\" doesn't exist or access denied, ec: {}", texPath, err.message());
|
||||
return; // the texture will be empty, oh well. We'll clear with a solid color anyways.
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue