From 3568e60718ced7aa3f678571f3671da19dd89447 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 13 Aug 2004 12:38:12 +0000 Subject: [PATCH] Changed the "Reading a byte swapped file" message to info level. --- src/osgPlugins/ive/DataInputStream.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/osgPlugins/ive/DataInputStream.cpp b/src/osgPlugins/ive/DataInputStream.cpp index 13464752d..6f3141b23 100644 --- a/src/osgPlugins/ive/DataInputStream.cpp +++ b/src/osgPlugins/ive/DataInputStream.cpp @@ -58,6 +58,7 @@ #include "Shape.h" #include +#include #include @@ -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 ; }