Removes extraneous log (#2186)

This log appears to fire every time I ask the python package to make a prediction. It's the only log that fires from XGBoost. When we're getting predictions on millions of items a day in production, this log seems out of place.
This commit is contained in:
Preston Parry 2017-04-11 17:38:29 -07:00 committed by Tianqi Chen
parent a837fa9620
commit 1ab8088a09

View File

@ -261,7 +261,6 @@ XGB_DLL int XGDMatrixCreateFromCSREx(const size_t* indptr,
mat.info.num_col = num_col;
}
mat.info.num_row = nindptr - 1;
LOG(INFO) << "num_row=" << mat.info.num_row;
mat.info.num_nonzero = mat.row_data_.size();
*out = new std::shared_ptr<DMatrix>(DMatrix::Create(std::move(source)));
API_END();