summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-01-30 23:08:09 +0100
committerMattes D <github@xoft.cz>2015-02-04 08:42:28 +0100
commit0e769f12ac39e1ef587c1eb7af549c553cd8a330 (patch)
tree6311b7cf122e9b4427e259af276b0d1663952449
parentExported cServerHandle and cNetwork:Listen to Lua. (diff)
downloadcuberite-0e769f12ac39e1ef587c1eb7af549c553cd8a330.tar
cuberite-0e769f12ac39e1ef587c1eb7af549c553cd8a330.tar.gz
cuberite-0e769f12ac39e1ef587c1eb7af549c553cd8a330.tar.bz2
cuberite-0e769f12ac39e1ef587c1eb7af549c553cd8a330.tar.lz
cuberite-0e769f12ac39e1ef587c1eb7af549c553cd8a330.tar.xz
cuberite-0e769f12ac39e1ef587c1eb7af549c553cd8a330.tar.zst
cuberite-0e769f12ac39e1ef587c1eb7af549c553cd8a330.zip
-rw-r--r--src/Bindings/LuaServerHandle.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Bindings/LuaServerHandle.cpp b/src/Bindings/LuaServerHandle.cpp
index 7b82003bb..a84f894b5 100644
--- a/src/Bindings/LuaServerHandle.cpp
+++ b/src/Bindings/LuaServerHandle.cpp
@@ -17,7 +17,6 @@ cLuaServerHandle::cLuaServerHandle(UInt16 a_Port, cPluginLua & a_Plugin, int a_C
m_Callbacks(a_Plugin.GetLuaState(), a_CallbacksTableStackPos),
m_Port(a_Port)
{
- LOGD("Creating LuaServerHandle at %p.", this);
}
@@ -28,7 +27,6 @@ cLuaServerHandle::cLuaServerHandle(UInt16 a_Port, cPluginLua & a_Plugin, int a_C
cLuaServerHandle::~cLuaServerHandle()
{
// If the server handle is still open, close it explicitly:
- LOGD("Deleting LuaServerHandle at %p.", this);
Close();
}
@@ -50,8 +48,6 @@ void cLuaServerHandle::SetServerHandle(cServerHandlePtr a_ServerHandle, cLuaServ
void cLuaServerHandle::Close(void)
{
- LOGD("Closing LuaServerHandle at %p.", this);
-
// Safely grab a copy of the server handle:
cServerHandlePtr ServerHandle = m_ServerHandle;
if (ServerHandle == nullptr)