ENH: log: reduce the status log level to reduce log under cli

Change-Id: I7ab839ce02c22fb48c32b52184649fb951efbe95
(cherry picked from commit 2f1f2bedaf5420ceda3d2f29b7e44a1cc863ccac)
This commit is contained in:
lane.wei 2023-03-17 21:20:54 +08:00 committed by Lane.Wei
parent 797c211203
commit d7364900dd
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ void PrintBase::set_status(int percent, const std::string &message, unsigned in
if (m_status_callback)
m_status_callback(SlicingStatus(percent, message, flags, warning_step));
else
BOOST_LOG_TRIVIAL(info) <<boost::format("Percent %1%: %2%\n")%percent %message.c_str();
BOOST_LOG_TRIVIAL(debug) <<boost::format("Percent %1%: %2%\n")%percent %message.c_str();
}
void PrintBase::status_update_warnings(int step, PrintStateBase::WarningLevel /* warning_level */,