Reduce debug log output

This commit is contained in:
Zheng, Lei
2022-04-23 08:39:35 +08:00
committed by wwmayer
parent 30faedfce2
commit 5ec19fc5a1
2 changed files with 1 additions and 2 deletions

View File

@@ -818,7 +818,6 @@ void TreeWidget::_updateStatus(bool delay) {
int timeout = TreeParams::Instance()->StatusTimeout();
if (timeout < 0)
timeout = 1;
FC_LOG("delay update status");
statusTimer->start(timeout);
}

View File

@@ -954,7 +954,7 @@ DocumentObjectExecReturn *Sheet::execute(void)
FC_LOG("recomputing " << getFullName());
for(auto &pos : make_order) {
const auto &addr = VertexIndexList[pos];
FC_LOG(addr.toString());
FC_TRACE(addr.toString());
recomputeCell(addr);
}
} catch (std::exception &) {