From 8117b0cfdc5a1a493607fd9db9896c2a257c5cd6 Mon Sep 17 00:00:00 2001 From: Mike Welsh Date: Thu, 22 Aug 2019 10:24:38 -0700 Subject: [PATCH] avm1: Remove some debug spew --- core/src/avm1.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/avm1.rs b/core/src/avm1.rs index 21762e54d..6029d5b1e 100644 --- a/core/src/avm1.rs +++ b/core/src/avm1.rs @@ -162,9 +162,6 @@ impl Avm1 { root: DisplayNode<'gc>, mut path: &str, ) -> Option> { - if path == "/" { - log::warn!("ROOT"); - } let mut cur_clip = if path.bytes().nth(0).unwrap_or(0) == b'/' { path = &path[1..]; root @@ -916,7 +913,6 @@ impl Avm1 { } else if let Some(clip) = Avm1::resolve_slash_path(context.start_clip, context.root, target) { - log::warn!("Path: {}", target); context.active_clip = clip; } else { log::warn!("SetTarget failed: {} not found", target);