From ae9ded02617a060283fecb0971f85813a8744c25 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Sat, 11 Oct 2014 01:12:37 +0200 Subject: [PATCH] Cleanup of SceneGraphNode --- src/scenegraph/scenegraphnode.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"; }