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 e5bb27e commit fe3b24cCopy full SHA for fe3b24c
kmir/src/kmir/kmir.py
@@ -189,11 +189,9 @@ def prove_rs(opts: ProveRSOpts) -> APRProof:
189
and item['mono_item_kind']['MonoItemFn'].get('body') is None
190
]
191
has_missing = len(missing_body_syms) > 0
192
- _LOGGER.info(
193
- f'Reduced items table size {len(smir_info.items)}; '
194
- f'missing-bodies-present={has_missing} count={len(missing_body_syms)}'
195
- )
+ _LOGGER.info(f'Reduced items table size {len(smir_info.items)}')
196
if has_missing:
+ _LOGGER.info(f'missing-bodies-present={has_missing} count={len(missing_body_syms)}')
197
_LOGGER.debug(f'Missing-body function symbols (first 5): {missing_body_syms[:5]}')
198
199
kmir = KMIR.from_kompiled_kore(
0 commit comments