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.verplant.org/?a=commitdiff_plain;h=67cc3619957f0017d14275ad710f261f42d2d8cc;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) {