From ff3efaee931e02fda010a752b47b55eb72d899c0 Mon Sep 17 00:00:00 2001 From: Torsten Dreyer Date: Mon, 2 Nov 2015 10:56:17 +0100 Subject: [PATCH] Fix wrong log-class for debug message --- simgear/scene/tgdb/SGTileDetailsCallback.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simgear/scene/tgdb/SGTileDetailsCallback.hxx b/simgear/scene/tgdb/SGTileDetailsCallback.hxx index a2af1b2e..f282a294 100644 --- a/simgear/scene/tgdb/SGTileDetailsCallback.hxx +++ b/simgear/scene/tgdb/SGTileDetailsCallback.hxx @@ -736,9 +736,9 @@ public: if (!found) { bin = new TreeBin(); bin->texture = mat->get_tree_texture(); - SG_LOG(SG_INPUT, SG_DEBUG, "Tree texture " << bin->texture); + SG_LOG(SG_TERRAIN, SG_DEBUG, "Tree texture " << bin->texture); bin->teffect = mat->get_tree_effect(); - SG_LOG(SG_INPUT, SG_DEBUG, "Tree effect " << bin->teffect); + SG_LOG(SG_TERRAIN, SG_DEBUG, "Tree effect " << bin->teffect); bin->range = mat->get_tree_range(); bin->width = mat->get_tree_width(); bin->height = mat->get_tree_height(); -- 2.39.5