Add debugging info to vrml reader
This commit is contained in:
parent
d44b04978a
commit
42f17dfbef
|
@ -202,8 +202,17 @@ SCENEGRAPH* LoadVRML( const wxString& aFileName, bool useInline )
|
|||
{
|
||||
expanded = gzip::decompress( buffer, size );
|
||||
}
|
||||
catch( std::runtime_error& e )
|
||||
{
|
||||
wxLogDebug( wxT( " * [INFO] wrz load failed: %s" ), wxString::FromUTF8Unchecked( e.what() ) );
|
||||
|
||||
delete[] buffer;
|
||||
return nullptr;
|
||||
}
|
||||
catch( ... )
|
||||
{
|
||||
wxLogDebug( wxT( " * [INFO] wrz load failed: unknown error" ) );
|
||||
|
||||
delete[] buffer;
|
||||
return nullptr;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue