Removed debug messages

This commit is contained in:
Robert Osfield
2010-06-09 15:05:34 +00:00
parent ae88d9467c
commit 8828d31c2e

View File

@@ -102,8 +102,6 @@ public:
virtual void writeWrappedString( const std::string& str )
{
OSG_NOTICE<<"writeWrappedString( "<<str<<" )"<<std::endl;
std::string wrappedStr;
unsigned int size = str.size();
for ( unsigned int i=0; i<size; ++i )
@@ -117,8 +115,6 @@ public:
wrappedStr.insert( 0, 1, '\"' );
wrappedStr += '\"';
OSG_NOTICE<<" wrappedStr = "<<wrappedStr<<std::endl;
writeString( wrappedStr );
}