From: florianf Date: Sun, 28 Feb 2010 19:45:53 +0000 (+0000) Subject: lisp/parser.cpp: Remove a forgotten debug message. X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=4a3d9688952aaa6d4f07ce74524df0a7792fe7c1;p=supertux.git lisp/parser.cpp: Remove a forgotten debug message. git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6466 837edb03-e0f3-0310-88ca-d4d4e8b29345 --- diff --git a/src/lisp/parser.cpp b/src/lisp/parser.cpp index d827c61ee..1ea6f80af 100644 --- a/src/lisp/parser.cpp +++ b/src/lisp/parser.cpp @@ -25,7 +25,6 @@ #include "physfs/ifile_stream.hpp" #include "physfs/ifile_streambuf.hpp" #include "supertux/globals.hpp" -#include "util/log.hpp" #include "supertux/gameconfig.hpp" @@ -83,7 +82,6 @@ Parser::parse(const std::string& filename) for(char** i = searchpath; *i != NULL; i++) { std::string abs_dir = std::string (*i) + PHYSFS_getDirSeparator () + rel_dir; - log_debug << "Adding " << abs_dir << std::endl; dictionary_manager->add_directory (abs_dir); } dictionary = & (dictionary_manager->get_dictionary());