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 0ad8b1184e
commit 4e132ec936

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);
}
}
}