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,13 +107,11 @@ YamlNode *MappingNode::getValue(const std::string &key) const ...@@ -107,13 +107,11 @@ YamlNode *MappingNode::getValue(const std::string &key) const
{ {
Mapping::const_iterator it = map_.find(key); Mapping::const_iterator it = map_.find(key);
if (it != map_.end()) { if (it != map_.end())
return it->second; return it->second;
} else { else
DEBUG("MappingNode: Could not find %s", key.c_str());
return NULL; return NULL;
} }
}
void MappingNode::getValue(const std::string &key, bool *b) const 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.
Please register or to comment