diff options
author | Matt Johnston <matt@ucc.asn.au> | 2017-05-25 00:12:07 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2017-05-25 00:12:07 +0800 |
commit | cf2c4f44a2476172866f2d460ede18c0ea015968 (patch) | |
tree | b9578acc420edcb73b68bfde0d7e4a4979279731 /fuzz-harness.c | |
parent | 2bc55ff428f27ef174c5bcfd6e0d18690932eb42 (diff) |
fuzzers disable logging by default
--HG--
branch : fuzz
Diffstat (limited to 'fuzz-harness.c')
-rw-r--r-- | fuzz-harness.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fuzz-harness.c b/fuzz-harness.c index 41bd946..8f370ca 100644 --- a/fuzz-harness.c +++ b/fuzz-harness.c @@ -12,6 +12,7 @@ int main(int argc, char ** argv) { #if DEBUG_TRACE if (strcmp(argv[i], "-v") == 0) { debug_trace = 1; + TRACE(("debug printing on")) } #endif } |