From: Torsten Dreyer Date: Mon, 2 Nov 2015 09:56:17 +0000 (+0100) Subject: Fix wrong log-class for debug message X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ff3efaee931e02fda010a752b47b55eb72d899c0;p=simgear.git Fix wrong log-class for debug message --- 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();