Skip to content
Snippets Groups Projects
Commit bc80440fe2d1 authored by Lasse Collin's avatar Lasse Collin
Browse files

xz: Comment out annoying sandboxing messages.

parent 51bfc863bf64
Branches
No related tags found
No related merge requests found
......@@ -170,8 +170,11 @@
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 @@
# 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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment