From: Christoph Sommer Date: Sun, 24 Jun 2007 10:19:26 +0000 (+0000) Subject: Demoted buggy tilemap data warning to DEBUG level, because it tends to pop up in... X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=e158dcf2c63ce52a2f6d664df10a58b577379ca5;p=supertux.git Demoted buggy tilemap data warning to DEBUG level, because it tends to pop up in perfectly fine worldmaps SVN-Revision: 5112 --- diff --git a/src/worldmap/tux.cpp b/src/worldmap/tux.cpp index 0aa3c21a8..b4ea3f70a 100644 --- a/src/worldmap/tux.cpp +++ b/src/worldmap/tux.cpp @@ -252,7 +252,7 @@ Tux::tryContinueWalking(float elapsed_time) Vector next_tile; if (!worldmap->path_ok(direction, tile_pos, &next_tile)) { - log_warning << "Tilemap data is buggy" << std::endl; + log_debug << "Tilemap data is buggy" << std::endl; stop(); return; }