App: Change element name warning to log

This commit is contained in:
Chris Hennes
2025-03-30 10:50:04 -05:00
committed by Benjamin Nauck
parent 644b902615
commit 837f6fa788

View File

@@ -469,9 +469,9 @@ bool PropertyLinkBase::_updateElementReference(DocumentObject* feature,
const auto& newName =
elementName.newName.size() ? elementName.newName : elementName.oldName;
if (oldName != newName) {
FC_WARN(propertyName(this)
<< " auto change element reference " << ret->getFullName() << " "
<< oldName << " -> " << newName);
FC_LOG(propertyName(this)
<< " auto change element reference " << ret->getFullName() << " "
<< oldName << " -> " << newName);
}
}
}