Unverified Commit 48ff86e6 authored by Guolin Ke's avatar Guolin Ke Committed by GitHub
Browse files

fix #1258

parent b6db7e23
...@@ -23,7 +23,7 @@ bool Boosting::LoadFileToBoosting(Boosting* boosting, const char* filename) { ...@@ -23,7 +23,7 @@ bool Boosting::LoadFileToBoosting(Boosting* boosting, const char* filename) {
} }
} }
std::chrono::duration<double, std::milli> delta = (std::chrono::steady_clock::now() - start_time); std::chrono::duration<double, std::milli> delta = (std::chrono::steady_clock::now() - start_time);
Log::Info("time for loading model: %f seconds", 1e-3*delta); Log::Debug("time for loading model: %f seconds", 1e-3*delta);
return true; return true;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment