summaryrefslogtreecommitdiff
path: root/src/script.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2012-03-11 04:15:45 +0200
committerPerttu Ahola <celeron55@gmail.com>2012-03-11 04:15:45 +0200
commitf1d9880006cf713597c1fc573f83db75062712c9 (patch)
treec5b056acf05ce408964b79b32e3e84a3619b2cdd /src/script.cpp
parent6ec447a1aa3678371af31aad4e186885ca4b8f27 (diff)
downloadminetest-f1d9880006cf713597c1fc573f83db75062712c9.tar.gz
minetest-f1d9880006cf713597c1fc573f83db75062712c9.tar.bz2
minetest-f1d9880006cf713597c1fc573f83db75062712c9.zip
Clean up log messages everywhere
Diffstat (limited to 'src/script.cpp')
-rw-r--r--src/script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script.cpp b/src/script.cpp
index f91b22896..1925ea701 100644
--- a/src/script.cpp
+++ b/src/script.cpp
@@ -89,7 +89,7 @@ int luaErrorHandler(lua_State *L) {
bool script_load(lua_State *L, const char *path)
{
- infostream<<"Loading and running script from "<<path<<std::endl;
+ verbosestream<<"Loading and running script from "<<path<<std::endl;
lua_pushcfunction(L, luaErrorHandler);
int errorhandler = lua_gettop(L);