summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-03-21 15:13:17 +0100
committerGitHub <noreply@github.com>2023-03-21 14:13:17 +0000
commit7cf6e2a7a642cbcbb695b0226aba7d24fb84971b (patch)
tree1241194ebba12dd6615077b6be57b050f1377073 /core
parentaa729a42b4257b4d58bfcd0270566756c9470d08 (diff)
chore(core): remove stray log statement (#18322)
Diffstat (limited to 'core')
-rw-r--r--core/runtime.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/runtime.rs b/core/runtime.rs
index f1aa63f23..7b6dfba92 100644
--- a/core/runtime.rs
+++ b/core/runtime.rs
@@ -395,7 +395,6 @@ impl JsRuntime {
let (mut isolate, snapshot_options) = if snapshot_options.will_snapshot() {
let snapshot_creator =
snapshot_util::create_snapshot_creator(refs, options.startup_snapshot);
- eprintln!("create snapshot {:#?}", snapshot_options);
let mut isolate = JsRuntime::setup_isolate(snapshot_creator);
{
let scope = &mut v8::HandleScope::new(&mut isolate);