summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--base/test/trace_event_analyzer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/test/trace_event_analyzer.cc b/base/test/trace_event_analyzer.cc
index 94d49a4..adefe0a 100644
--- a/base/test/trace_event_analyzer.cc
+++ b/base/test/trace_event_analyzer.cc
@@ -94,9 +94,9 @@ bool TraceEvent::SetFromJSON(const base::Value* event_value) {
else if (it.value().GetAsDouble(&double_num))
arg_numbers[it.key()] = double_num;
else {
- LOG(ERROR) << "Value type of argument is not supported: " <<
+ LOG(WARNING) << "Value type of argument is not supported: " <<
static_cast<int>(it.value().GetType());
- return false; // Invalid trace event JSON format.
+ continue; // Skip non-supported arguments.
}
}