Skip to content

Commit

Permalink
Changed the "Reading a byte swapped file" message to info level.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertosfield committed Aug 13, 2004
1 parent 195a1be commit 3568e60
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/osgPlugins/ive/DataInputStream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
#include "Shape.h"

#include <osg/Endian>
#include <osg/Notify>
#include <osgDB/ReadFile>


Expand Down Expand Up @@ -86,7 +87,7 @@ DataInputStream::DataInputStream(std::istream* istream)
if ( endianType != OPPOSITE_ENDIAN_TYPE ) {
throw Exception("DataInputStream::DataInputStream(): This file has an unreadable endian type.") ;
}
if (true/*_verboseOutput*/) std::cout<<"DataInputStream::DataInputStream: Reading a byteswapped file" << std::endl ;
osg::notify(osg::INFO)<<"DataInputStream::DataInputStream: Reading a byteswapped file" << std::endl ;
_byteswap = 1 ;
}

Expand Down

0 comments on commit 3568e60

Please sign in to comment.