summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/lualistener.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/indra/llcommon/lualistener.cpp b/indra/llcommon/lualistener.cpp
index ef9782824e..018a31d5a8 100644
--- a/indra/llcommon/lualistener.cpp
+++ b/indra/llcommon/lualistener.cpp
@@ -43,13 +43,11 @@ LuaListener::LuaListener(lua_State* L):
LLEventPump::inventName("LuaState"),
[this](const LLSD& status)
{
- LL_DEBUGS("LuaListener") << "caught " << status << LL_ENDL;
const auto& statsd = status["status"];
if (statsd.asString() != "running")
{
// If a Lua script is still blocked in getNext() during
// viewer shutdown, close the queue to wake up getNext().
- LL_DEBUGS("LuaListener") << "closing queue" << LL_ENDL;
mQueue.close();
}
return false;