From 06558a5dda9b5fc35a80336477157431cfacd028 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 9 Dec 2021 15:45:33 +0000 Subject: [PATCH] Quietened down debug message --- src/osgPlugins/OpenFlight/Registry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/OpenFlight/Registry.cpp b/src/osgPlugins/OpenFlight/Registry.cpp index 87965888c..f27985c68 100644 --- a/src/osgPlugins/OpenFlight/Registry.cpp +++ b/src/osgPlugins/OpenFlight/Registry.cpp @@ -45,7 +45,7 @@ void Registry::addPrototype(int opcode, Record* prototype) } if (_recordProtoMap.find(opcode) != _recordProtoMap.end()) - OSG_WARN << "Registry already contains prototype for opcode " << opcode << "." << std::endl; + OSG_DEBUG << "Registry already contains prototype for opcode " << opcode << "." << std::endl; _recordProtoMap[opcode] = prototype; }