Bump to dev.05

* Disable logging text for timing of geometry surface creation
* Suppress text output from windeployqt
* Bump to 2024.09.3-dev.05
This commit is contained in:
Magne Sjaastad
2024-11-15 11:36:52 +01:00
committed by GitHub
parent 664b082c81
commit f6109cab2b
3 changed files with 20 additions and 6 deletions

View File

@@ -144,10 +144,19 @@ void RivGridPartMgr::generatePartGeometry( cvf::StructGridGeometryGenerator& geo
// Surface geometry
{
auto text = caf::AppEnum<RivCellSetEnum>::text( m_cellSetType );
RiaLogging::resetTimer( "Compute surface for " + text );
bool showDebugTiming = false;
if ( showDebugTiming )
{
auto text = caf::AppEnum<RivCellSetEnum>::text( m_cellSetType );
RiaLogging::resetTimer( "Compute surface for " + text );
}
cvf::ref<cvf::DrawableGeo> geo = geoBuilder.generateSurface();
RiaLogging::logTimeElapsed( "" );
if ( showDebugTiming )
{
RiaLogging::logTimeElapsed( "" );
}
if ( geo.notNull() )
{