summaryrefslogtreecommitdiff
path: root/src/content_sao.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/content_sao.cpp
parent6ec447a1aa3678371af31aad4e186885ca4b8f27 (diff)
downloadminetest-f1d9880006cf713597c1fc573f83db75062712c9.tar.gz
minetest-f1d9880006cf713597c1fc573f83db75062712c9.tar.bz2
minetest-f1d9880006cf713597c1fc573f83db75062712c9.zip
Clean up log messages everywhere
Diffstat (limited to 'src/content_sao.cpp')
-rw-r--r--src/content_sao.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content_sao.cpp b/src/content_sao.cpp
index b04f03f26..85340981d 100644
--- a/src/content_sao.cpp
+++ b/src/content_sao.cpp
@@ -517,7 +517,7 @@ std::string LuaEntitySAO::getClientInitializationData()
std::string LuaEntitySAO::getStaticData()
{
- infostream<<__FUNCTION_NAME<<std::endl;
+ verbosestream<<__FUNCTION_NAME<<std::endl;
std::ostringstream os(std::ios::binary);
// version
writeU8(os, 1);
@@ -641,7 +641,7 @@ std::string LuaEntitySAO::getDescription()
os<<(m_base_position.Y/BS)<<",";
os<<(m_base_position.Z/BS);
os<<")";
- return std::string("LuaEntitySAO");
+ return os.str();
}
void LuaEntitySAO::setVelocity(v3f velocity)