@@ -360,31 +360,31 @@ static struct contract_clausest default_loop_contract_clauses(
360
360
else
361
361
{
362
362
// infer assigns clause targets if none given
363
- log.warning () << " No assigns clause provided for loop " << function_id
364
- << " ." << loop.latch ->loop_number << " at "
365
- << loop.head ->source_location () << " . The inferred set {" ;
363
+ log.debug () << " No assigns clause provided for loop " << function_id
364
+ << " ." << loop.latch ->loop_number << " at "
365
+ << loop.head ->source_location () << " . The inferred set {" ;
366
366
bool first = true ;
367
367
for (const auto &expr : inferred_assigns)
368
368
{
369
369
if (!first)
370
370
{
371
- log.warning () << " , " ;
371
+ log.debug () << " , " ;
372
372
}
373
373
first = false ;
374
- log.warning () << format (expr);
374
+ log.debug () << format (expr);
375
375
}
376
- log.warning () << " } might be incomplete or imprecise, please provide an "
377
- " assigns clause if the analysis fails."
378
- << messaget::eom;
376
+ log.debug () << " } might be incomplete or imprecise, please provide an "
377
+ " assigns clause if the analysis fails."
378
+ << messaget::eom;
379
379
result.assigns = inferred_assigns;
380
380
}
381
381
382
382
if (result.decreases_clauses .empty ())
383
383
{
384
- log.warning () << " No decrease clause provided for loop " << function_id
385
- << " ." << loop.latch ->loop_number << " at "
386
- << loop.head ->source_location ()
387
- << " . Termination will not be checked." << messaget::eom;
384
+ log.debug () << " No decrease clause provided for loop " << function_id
385
+ << " ." << loop.latch ->loop_number << " at "
386
+ << loop.head ->source_location ()
387
+ << " . Termination will not be checked." << messaget::eom;
388
388
}
389
389
}
390
390
return result;
0 commit comments