Skip to content

Commit 62ed975

Browse files
ldanilekConvex, Inc.
authored and
Convex, Inc.
committed
remove log line on missing analyze result (#27620)
it's expected that modules can be missing analyze results. avoid logging a warning. if we want to check that this only happens for `_deps`, we should add that to db-verifier, not when loading modules for an action. GitOrigin-RevId: e974276caa513f3c38d7a7707f5b6c02e720763f
1 parent bf5b86c commit 62ed975

File tree

1 file changed

+0
-1
lines changed
  • crates/model/src/components

1 file changed

+0
-1
lines changed

crates/model/src/components/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ impl<'a, RT: Runtime> ComponentsModel<'a, RT> {
208208
.await?;
209209
for module in module_metadata {
210210
let Some(ref analyze_result) = module.analyze_result else {
211-
tracing::warn!("Module {:?} missing analyze result", module.path);
212211
continue;
213212
};
214213
for function in &analyze_result.functions {

0 commit comments

Comments
 (0)