From: Tobias Markus Date: Sun, 15 Dec 2013 21:38:06 +0000 (+0100) Subject: Adding level author and name to level license warning X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=8b27e93b4acbc92583fbdc5f75b192aca54581c1;hp=30339004467112b41d7c6b6e4154a872820f245b;p=supertux.git Adding level author and name to level license warning --- diff --git a/src/supertux/level.cpp b/src/supertux/level.cpp index 9b179bcdc..cf01cc7a8 100644 --- a/src/supertux/level.cpp +++ b/src/supertux/level.cpp @@ -129,7 +129,7 @@ Level::load(const std::string& filepath) } if (license == "") { - log_warning << "The level author did not specify a license for this level. You might not be allowed to share it." << std::endl; + log_warning << "The level author \"" << author << "\" did not specify a license for this level \"" << name << "\". You might not be allowed to share it." << std::endl; } } catch(std::exception& e) {