diff --git a/src/scenegraph/scenegraphnode.cpp b/src/scenegraph/scenegraphnode.cpp index 841f102654..c67b3d56c4 100644 --- a/src/scenegraph/scenegraphnode.cpp +++ b/src/scenegraph/scenegraphnode.cpp @@ -103,7 +103,8 @@ SceneGraphNode* SceneGraphNode::createFromDictionary(const ghoul::Dictionary& di std::string parentName; if (!dictionary.getValue(constants::scenegraphnode::keyParentName, parentName)) { - LWARNING("Could not find 'Parent' key, using 'Root'."); + LWARNING("Could not find '" << constants::scenegraphnode::keyParentName << + "' key, using 'Root'."); parentName = "Root"; }