scip bump to v921

This commit is contained in:
Mizux Seiha
2025-03-04 21:07:18 +01:00
parent 56fde74a11
commit d97048d4eb
2 changed files with 4 additions and 4 deletions

View File

@@ -15,13 +15,13 @@ index a90120188a..2c068e5e30 100644
if ( ival == 0 )
{
- (void) google::SetVLOGLevel("*", google::GLOG_INFO);
+ absl::SetFlag(&FLAGS_stderrthreshold, 2);
+ absl::SetStderrThreshold(absl::LogSeverityAtLeast::kInfo);
lpi->lp_info = false;
}
else
{
- (void) google::SetVLOGLevel("*", google::GLOG_ERROR);
+ absl::SetFlag(&FLAGS_stderrthreshold, 0);
+ absl::SetStderrThreshold(absl::LogSeverityAtLeast::kError);
lpi->lp_info = true;
}
break;