mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
Rust: drop too noisy log statements
This commit is contained in:
committed by
Tom Hvitved
parent
a6cd60f20e
commit
28be2086ad
@@ -646,7 +646,6 @@ impl<'a> Translator<'a> {
|
||||
.and_then(|x| x.body())
|
||||
.is_some_and(|body| body.syntax() == syntax)
|
||||
{
|
||||
tracing::debug!("Skipping Fn body");
|
||||
return true;
|
||||
}
|
||||
if syntax
|
||||
@@ -655,7 +654,6 @@ impl<'a> Translator<'a> {
|
||||
.and_then(|x| x.body())
|
||||
.is_some_and(|body| body.syntax() == syntax)
|
||||
{
|
||||
tracing::debug!("Skipping Const body");
|
||||
return true;
|
||||
}
|
||||
if syntax
|
||||
@@ -664,7 +662,6 @@ impl<'a> Translator<'a> {
|
||||
.and_then(|x| x.body())
|
||||
.is_some_and(|body| body.syntax() == syntax)
|
||||
{
|
||||
tracing::debug!("Skipping Static body");
|
||||
return true;
|
||||
}
|
||||
if syntax
|
||||
@@ -673,7 +670,6 @@ impl<'a> Translator<'a> {
|
||||
.and_then(|x| x.pat())
|
||||
.is_some_and(|pat| pat.syntax() == syntax)
|
||||
{
|
||||
tracing::debug!("Skipping parameter");
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user