Removed debug messages

This commit is contained in:
Robert Osfield 2010-11-26 12:22:06 +00:00
parent 8a929ea923
commit 1a69b98ca1

View File

@ -356,12 +356,10 @@ public:
const osg::Matrix& value = (object.*_getter)(); const osg::Matrix& value = (object.*_getter)();
if ( os.isBinary() ) if ( os.isBinary() )
{ {
OSG_NOTICE<<"MatrixSerializer::write() binary"<<std::endl;
os << value; os << value;
} }
else if ( ParentType::_defaultValue!=value ) else if ( ParentType::_defaultValue!=value )
{ {
OSG_NOTICE<<"MatrixSerializer::write() ascii, ParentType::_name="<<ParentType::_name<<std::endl;
os << PROPERTY((ParentType::_name).c_str()) << value << std::endl; os << PROPERTY((ParentType::_name).c_str()) << value << std::endl;
} }
return true; return true;