diff options
author | comex | 2015-01-30 00:57:31 -0500 |
---|---|---|
committer | comex | 2015-01-30 00:57:31 -0500 |
commit | 52774542a601081aa2a3cc54bdf3e1f1e78e50eb (patch) | |
tree | cdd51d47b72ab11a665e5b5d46a37c0112dd8ba5 /ios-bootstrap/unrestrict.c | |
parent | cleanup (diff) | |
download | substitute-52774542a601081aa2a3cc54bdf3e1f1e78e50eb.tar.gz |
Make logging less verbose.
Diffstat (limited to 'ios-bootstrap/unrestrict.c')
-rw-r--r-- | ios-bootstrap/unrestrict.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ios-bootstrap/unrestrict.c b/ios-bootstrap/unrestrict.c index 11988b1..3c6ff56 100644 --- a/ios-bootstrap/unrestrict.c +++ b/ios-bootstrap/unrestrict.c @@ -47,8 +47,10 @@ int main(int argc, char **argv) { return 0; } - ib_log("unrestrict: unrestricting %ld (sr=%s, ie=%s)", pid, - should_resume, is_exec); + if (IB_VERBOSE) { + ib_log("unrestrict: unrestricting %ld (sr=%s, ie=%s)", pid, + should_resume, is_exec); + } int ec = 1; |