Skip to content

Commit

Permalink
avm2: Remove "namespace not matching" message
Browse files Browse the repository at this point in the history
This was getting spammed after #16069
  • Loading branch information
Lord-McSweeney committed Apr 21, 2024
1 parent 1f5d199 commit 15c076f
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions core/src/avm2/namespace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,13 +319,7 @@ impl<'gc> Namespace<'gc> {
) => {
let name_matches = name1 == name2;
let version_matches = version1 <= version2;
if name_matches && !version_matches {
tracing::info!(
"Rejecting namespace match due to versions: {:?} {:?}",
self.0,
other.0
);
}

name_matches && version_matches
}
_ => false,
Expand Down

0 comments on commit 15c076f

Please sign in to comment.