aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2020-02-05 20:33:50 +0200
committerLasse Collin <lasse.collin@tukaani.org>2020-02-05 22:00:28 +0200
commite1beaa74bc7cb5a409d59b55870e01ae7784ce3a (patch)
tree0a8685ab4785222aa69551362f773d77a91e6612
parent8238192652290df78bd728b20e3f6542d1a2819e (diff)
downloadxz-e1beaa74bc7cb5a409d59b55870e01ae7784ce3a.tar.gz
xz: Comment out annoying sandboxing messages.
-rw-r--r--src/xz/file_io.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/xz/file_io.c b/src/xz/file_io.c
index 464a8b15..0ba8db8f 100644
--- a/src/xz/file_io.c
+++ b/src/xz/file_io.c
@@ -170,8 +170,11 @@ static void
io_sandbox_enter(int src_fd)
{
if (!sandbox_allowed) {
- message(V_DEBUG, _("Sandbox is disabled due "
- "to incompatible command line arguments"));
+ // This message is more often annoying than useful so
+ // it's commented out. It can be useful when developing
+ // the sandboxing code.
+ //message(V_DEBUG, _("Sandbox is disabled due "
+ // "to incompatible command line arguments"));
return;
}
@@ -213,7 +216,8 @@ io_sandbox_enter(int src_fd)
# error ENABLE_SANDBOX is defined but no sandboxing method was found.
#endif
- message(V_DEBUG, _("Sandbox was successfully enabled"));
+ // This message is annoying in xz -lvv.
+ //message(V_DEBUG, _("Sandbox was successfully enabled"));
return;
error: