We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 225dabc commit c442188Copy full SHA for c442188
kmir/src/kmir/kmir.py
@@ -204,11 +204,9 @@ def prove_rs(opts: ProveRSOpts) -> APRProof:
204
and item['mono_item_kind']['MonoItemFn'].get('body') is None
205
]
206
has_missing = len(missing_body_syms) > 0
207
- _LOGGER.info(
208
- f'Reduced items table size {len(smir_info.items)}; '
209
- f'missing-bodies-present={has_missing} count={len(missing_body_syms)}'
210
- )
+ _LOGGER.info(f'Reduced items table size {len(smir_info.items)}')
211
if has_missing:
+ _LOGGER.info(f'missing-bodies-present={has_missing} count={len(missing_body_syms)}')
212
_LOGGER.debug(f'Missing-body function symbols (first 5): {missing_body_syms[:5]}')
213
214
kmir = KMIR.from_kompiled_kore(
0 commit comments