From: Tobias Markus Date: Tue, 24 Feb 2015 18:26:28 +0000 (+0100) Subject: Add current level to another debug message X-Git-Url: https://git.octo.it/?p=supertux.git;a=commitdiff_plain;h=146cb5cf3c1ea9bd8f884e3c99a7789c42d598f1 Add current level to another debug message --- diff --git a/src/supertux/sector.cpp b/src/supertux/sector.cpp index a2afe93e9..8575297ae 100644 --- a/src/supertux/sector.cpp +++ b/src/supertux/sector.cpp @@ -587,7 +587,8 @@ Sector::activate(const Vector& player_pos) // spawning tux in the ground would kill him if(!is_free_of_tiles(p->get_bbox())) { - log_warning << "Tried spawning Tux in solid matter. Compensating." << std::endl; + std::string current_level = "[" + Sector::current()->get_level()->filename + "] "; + log_warning << current_level << "Tried spawning Tux in solid matter. Compensating." << std::endl; Vector npos = p->get_bbox().p1; npos.y-=32; p->move(npos);