summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTri Vo <trong@google.com>2020-02-08 17:28:05 -0800
committerTri Vo <trong@google.com>2020-02-08 17:28:08 -0800
commit6a4ea977e4dbf60f5c0af544a758b5e8d2a8129b (patch)
tree6d451ed8e2f43acaa541f3ff8ea47378e09132bd
parentfe324bd148686197bf1b207c2e51d6dd64faf3ea (diff)
downloadfuzz-6a4ea977e4dbf60f5c0af544a758b5e8d2a8129b.tar.gz
fuzz: don't log every function call
Too spammy. Bug: 143375436 Test: n/a Change-Id: Ib2b4b03214764dfde0f4ba0e481d56a57eef2e22
-rw-r--r--iface_fuzzer/ProtoFuzzerRunner.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/iface_fuzzer/ProtoFuzzerRunner.cpp b/iface_fuzzer/ProtoFuzzerRunner.cpp
index c3600b4..ed822a2 100644
--- a/iface_fuzzer/ProtoFuzzerRunner.cpp
+++ b/iface_fuzzer/ProtoFuzzerRunner.cpp
@@ -182,7 +182,6 @@ void ProtoFuzzerRunner::Init(const string &iface_name, bool binder_mode) {
void ProtoFuzzerRunner::Execute(const ExecSpec &exec_spec) {
for (const auto &func_call : exec_spec.function_call()) {
- cout << func_call.DebugString() << endl;
Execute(func_call);
}
}