eLogDebug instead eLogInfo for empty path in unveil

This commit is contained in:
Charlie Root
2026-07-25 19:20:46 +00:00
parent 10d208e3e2
commit 839b9abd0a
+1 -1
View File
@@ -142,7 +142,7 @@ namespace util
{
if(path=="")
{
LogPrint(eLogInfo, "empty path for unveil");
LogPrint(eLogDebug, "empty path for unveil");
return;
}
if ( unveil(path.c_str(), rules.c_str()) == -1 )