We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffe0eaf commit 967f1f6Copy full SHA for 967f1f6
src/V8JsiRuntime.cpp
@@ -487,6 +487,11 @@ void V8Runtime::initializeV8() {
487
}
488
489
V8Runtime::V8Runtime(V8RuntimeArgs &&args) : args_(std::move(args)) {
490
+ args_.flags.enableMessageTracing = true;
491
+ args_.flags.enableGCTracing = true;
492
+ args_.flags.enableJitTracing = true;
493
+ args_.flags.trackGCObjectStats = true;
494
+
495
initializeTracing();
496
initializeV8();
497
@@ -541,6 +546,8 @@ V8Runtime::V8Runtime(V8RuntimeArgs &&args) : args_(std::move(args)) {
541
546
542
547
#endif
543
548
549
+ TRACEV8RUNTIME_VERBOSE(TraceLoggingString(args_.debuggerRuntimeName.c_str(), "debuggerRuntimeName"));
550
544
551
createHostObjectConstructorPerContext();
545
552
553
0 commit comments