mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-21 14:23:53 +00:00
Don't log empty error messages from boolean op
This commit is contained in:
@@ -4037,7 +4037,10 @@ bool IfcGeom::Kernel::boolean_operation(const TopoDS_Shape& a_, const TopTools_L
|
|||||||
#else
|
#else
|
||||||
str << "Error code: " << builder->ErrorStatus();
|
str << "Error code: " << builder->ErrorStatus();
|
||||||
#endif
|
#endif
|
||||||
Logger::Notice(str.str());
|
std::string str_str = str.str();
|
||||||
|
if (str_str.size()) {
|
||||||
|
Logger::Notice(str_str);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
delete builder;
|
delete builder;
|
||||||
if (!success) {
|
if (!success) {
|
||||||
|
|||||||
Reference in New Issue
Block a user