diff options
Diffstat (limited to 'src/common/sandbox.c')
-rw-r--r-- | src/common/sandbox.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/sandbox.c b/src/common/sandbox.c index 8cbcd04fa6..73966de6e2 100644 --- a/src/common/sandbox.c +++ b/src/common/sandbox.c @@ -883,7 +883,8 @@ sandbox_intern_string(const char *str) } } - log_info(LD_GENERAL, "(Sandbox) Parameter %s not found", str); + if (sandbox_active) + log_warn(LD_BUG, "No interned sandbox parameter found for %s", str); return str; } |