diff options
Diffstat (limited to 'runtime/monitor.cc')
-rw-r--r-- | runtime/monitor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/monitor.cc b/runtime/monitor.cc index 22cc197996..49b83a719d 100644 --- a/runtime/monitor.cc +++ b/runtime/monitor.cc @@ -457,7 +457,7 @@ static void ThrowIllegalMonitorStateExceptionF(const char* fmt, ...) if (!Runtime::Current()->IsStarted() || VLOG_IS_ON(monitor)) { std::ostringstream ss; self->Dump(ss); - LOG(Runtime::Current()->IsStarted() ? INFO : ERROR) + LOG(Runtime::Current()->IsStarted() ? ::android::base::INFO : ::android::base::ERROR) << self->GetException()->Dump() << "\n" << ss.str(); } va_end(args); |