changed debug info to output to INFO instaed of NOTICE.

This commit is contained in:
Robert Osfield
2009-03-11 17:39:08 +00:00
parent 5233a716c8
commit 7994ed1eb7
2 changed files with 8 additions and 8 deletions

View File

@@ -39,11 +39,11 @@ FFmpegImageStream::FFmpegImageStream(const FFmpegImageStream & image, const osg:
FFmpegImageStream::~FFmpegImageStream()
{
osg::notify(osg::NOTICE)<<"Destructing FFMpegImageStream..."<<std::endl;
osg::notify(osg::INFO)<<"Destructing FFmpegImageStream..."<<std::endl;
quit(true);
osg::notify(osg::NOTICE)<<"Have done quit"<<std::endl;
osg::notify(osg::INFO)<<"Have done quit"<<std::endl;
// release athe audio streams to make sure that the decoder doesn't retain any external
// refences.
@@ -55,7 +55,7 @@ FFmpegImageStream::~FFmpegImageStream()
delete m_commands;
osg::notify(osg::NOTICE)<<"Destructed FFMpegImageStream."<<std::endl;
osg::notify(osg::INFO)<<"Destructed FFMpegImageStream."<<std::endl;
}