Cleaned up output level of debugging messages

This commit is contained in:
Robert Osfield 2004-08-16 14:21:31 +00:00
parent dc0bc861b2
commit 7d41c7f4c3
2 changed files with 3 additions and 3 deletions

View File

@ -134,7 +134,7 @@ void MpegImageStream::load(const char* fileName)
}
if (mpeg3_has_audio(mpg))
{
osg::notify(NOTICE) << "Stream has audio" << std::endl;
osg::notify(INFO) << "Stream has audio" << std::endl;
}
_mpg = (void*)mpg;

View File

@ -57,7 +57,7 @@ namespace osg {
{
if (!isRunning()) start();
osg::notify(osg::NOTICE)<<"Play video"<<this<<std::endl;
osg::notify(osg::INFO)<<"Play video"<<this<<std::endl;
setCmd(THREAD_START);
}
@ -65,7 +65,7 @@ namespace osg {
/// Pause stream at current position.
virtual void pause()
{
osg::notify(osg::NOTICE)<<"Pause video"<<this<<std::endl;
osg::notify(osg::INFO)<<"Pause video"<<this<<std::endl;
setCmd(THREAD_STOP);
}