From 839b9abd0a7d658d61f37bc4bdf457ba5f2e2d88 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Sat, 25 Jul 2026 19:20:46 +0000 Subject: [PATCH] eLogDebug instead eLogInfo for empty path in unveil --- daemon/Daemon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/Daemon.cpp b/daemon/Daemon.cpp index 539d4c78..87723eab 100644 --- a/daemon/Daemon.cpp +++ b/daemon/Daemon.cpp @@ -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 )