reduce VLOG

This commit is contained in:
Laurent Perron
2021-09-07 11:15:52 +02:00
parent 56a38f0a58
commit d5e15361c8

View File

@@ -1535,7 +1535,7 @@ ColIndex RevisedSimplex::ComputeNumberOfEmptyColumns() {
for (ColIndex col(0); col < num_cols_; ++col) {
if (compact_matrix_.column(col).IsEmpty()) {
++num_empty_cols;
VLOG(1) << "Column " << col << " is empty.";
VLOG(2) << "Column " << col << " is empty.";
}
}
return num_empty_cols;