From 6c0861ef80882690dbc50a96e251fe67d87e8034 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 10 Oct 2002 09:42:41 +0000 Subject: [PATCH] Maded the "flt::Registry::getPrototype: Unkown opcode:" message a INFO level notify message rather than a NOTICE. --- src/osgPlugins/flt/Registry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/flt/Registry.cpp b/src/osgPlugins/flt/Registry.cpp index bc2339367..bcb9c6170 100644 --- a/src/osgPlugins/flt/Registry.cpp +++ b/src/osgPlugins/flt/Registry.cpp @@ -37,7 +37,7 @@ Record* Registry::getPrototype(const int opcode) if (itr != _recordProtoMap.end()) { return (*itr).second.get(); } - osg::notify( osg::NOTICE ) + osg::notify( osg::INFO ) << "flt::Registry::getPrototype: Unkown opcode: " << opcode << "\n"; return NULL;