Converted osg::notify to OSG_INFO etc.

This commit is contained in:
Robert Osfield
2010-05-28 16:27:02 +00:00
parent 0fefe9a789
commit a7da775353
6 changed files with 25 additions and 25 deletions

View File

@@ -155,7 +155,7 @@ DataInputStream::DataInputStream(std::istream* istream, const osgDB::ReaderWrite
if (_options.get())
{
setLoadExternalReferenceFiles(_options->getOptionString().find("noLoadExternalReferenceFiles")==std::string::npos);
OSG_NOTIFY(osg::DEBUG_INFO) << "ive::DataInputStream.setLoadExternalReferenceFiles()=" << getLoadExternalReferenceFiles() << std::endl;
OSG_DEBUG << "ive::DataInputStream.setLoadExternalReferenceFiles()=" << getLoadExternalReferenceFiles() << std::endl;
}
if(!istream){
@@ -169,7 +169,7 @@ DataInputStream::DataInputStream(std::istream* istream, const osgDB::ReaderWrite
if ( endianType != OPPOSITE_ENDIAN_TYPE ) {
throwException("DataInputStream::DataInputStream(): This file has an unreadable endian type.") ;
}
OSG_NOTIFY(osg::INFO)<<"DataInputStream::DataInputStream: Reading a byteswapped file" << std::endl ;
OSG_INFO<<"DataInputStream::DataInputStream: Reading a byteswapped file" << std::endl ;
_byteswap = 1 ;
}
@@ -186,7 +186,7 @@ DataInputStream::DataInputStream(std::istream* istream, const osgDB::ReaderWrite
if (compressionLevel>0)
{
OSG_NOTIFY(osg::INFO)<<"compressed ive stream"<<std::endl;
OSG_INFO<<"compressed ive stream"<<std::endl;
unsigned int maxSize = readUInt();
@@ -204,7 +204,7 @@ DataInputStream::DataInputStream(std::istream* istream, const osgDB::ReaderWrite
}
else
{
OSG_NOTIFY(osg::INFO)<<"uncompressed ive stream"<<std::endl;
OSG_INFO<<"uncompressed ive stream"<<std::endl;
}
}
}
@@ -240,7 +240,7 @@ bool DataInputStream::uncompress(std::istream& fin, std::string& destination) co
);
if (ret != Z_OK)
{
OSG_NOTIFY(osg::INFO)<<"failed to init"<<std::endl;
OSG_INFO<<"failed to init"<<std::endl;
return ret != 0;
}