Quietened down debug message

This commit is contained in:
Robert Osfield 2021-12-09 15:45:33 +00:00
parent 7505cb4603
commit 06558a5dda

View File

@ -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;
}