Skip to content
Snippets Groups Projects
Commit f2762ba6 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

yaml: remove verbose debug messages

parent 2ac8eca5
No related branches found
No related tags found
No related merge requests found
......@@ -107,12 +107,10 @@ YamlNode *MappingNode::getValue(const std::string &key) const
{
Mapping::const_iterator it = map_.find(key);
if (it != map_.end()) {
if (it != map_.end())
return it->second;
} else {
DEBUG("MappingNode: Could not find %s", key.c_str());
else
return NULL;
}
}
void MappingNode::getValue(const std::string &key, bool *b) const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment