diff --git a/plugins/3d/vrml/v1/vrml1_faceset.cpp b/plugins/3d/vrml/v1/vrml1_faceset.cpp index 92f56f9428..46e1af844c 100644 --- a/plugins/3d/vrml/v1/vrml1_faceset.cpp +++ b/plugins/3d/vrml/v1/vrml1_faceset.cpp @@ -303,10 +303,14 @@ SGNODE* WRL1FACESET::TranslateToSG( SGNODE* aParent, WRL1STATUS* sp ) { #if defined( DEBUG_VRML1 ) && ( DEBUG_VRML1 > 1 ) if( NULL == m_current.coord ) + { wxLogTrace( MASK_VRML, " * [INFO] bad model: no vertex set\n" ); + } if( NULL == m_current.mat ) + { wxLogTrace( MASK_VRML, " * [INFO] bad model: no material set\n" ); + } #endif return NULL; diff --git a/plugins/3d/vrml/v2/vrml2_box.cpp b/plugins/3d/vrml/v2/vrml2_box.cpp index 454001fa1b..a648e838e9 100644 --- a/plugins/3d/vrml/v2/vrml2_box.cpp +++ b/plugins/3d/vrml/v2/vrml2_box.cpp @@ -153,7 +153,7 @@ bool WRL2BOX::Read( WRLPROC& proc, WRL2BASE* aTopNode ) ostr << " * [INFO] invalid size at line " << line << ", column "; ostr << column << "\n"; ostr << " * [INFO] file: '" << proc.GetFileName() << "'\n"; - ostr << " * [INFO] message: '" << proc.GetError() << "'; + ostr << " * [INFO] message: '" << proc.GetError() << "'"; wxLogTrace( MASK_VRML, "%s\n", ostr.str().c_str() ); } while( 0 ); #endif