Skip to content

Commit fe898a0

Browse files
committed
show values of unknown wkbtypes when rendering
1 parent 4941a0e commit fe898a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgsvectorlayer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3717,7 +3717,7 @@ void QgsVectorLayer::drawFeature( QgsRenderContext &renderContext,
37173717
break;
37183718
}
37193719
default:
3720-
QgsDebugMsg( "Unknown WkbType ENCOUNTERED" );
3720+
QgsDebugMsg( QString( "Unknown WkbType 0x%1 ENCOUNTERED" ).arg( wkbType, 0, 16 ) );
37213721
break;
37223722
}
37233723
}

0 commit comments

Comments
 (0)