Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 3d9e99d4e8d51c7de681efab66bdcc192bd16961..5ec33895e44d50f568edeff1b0c944fd4eff5b53 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -12838,7 +12838,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_Log) { |
String::FlatContent format_content = format->GetFlatContent(); |
RUNTIME_ASSERT(format_content.IsAscii()); |
Vector<const uint8_t> chars = format_content.ToOneByteVector(); |
- LOGGER->LogRuntime(isolate, Vector<const char>::cast(chars), elms); |
+ isolate->logger()->LogRuntime(Vector<const char>::cast(chars), elms); |
return isolate->heap()->undefined_value(); |
} |