summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2024-06-18 18:02:47 -0400
committerNat Goodspeed <nat@lindenlab.com>2024-06-18 18:02:47 -0400
commitbac8ced279bb4b3ec49e497b75021b86a0b4d857 (patch)
treed786cfcb1f24fb92e9b45877c987b6a5bc0b0f06
parentc6001e6a20389b4d32813c7f61b56ff79f575723 (diff)
Use LL_DEBUGS("Lua") for LuaLog.
We might decide to leave some of them in place.
-rw-r--r--indra/llcommon/lua_function.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lua_function.h b/indra/llcommon/lua_function.h
index 7a3d9e7dd7..9cdd5665dc 100644
--- a/indra/llcommon/lua_function.h
+++ b/indra/llcommon/lua_function.h
@@ -473,7 +473,7 @@ public:
template <typename... ARGS>
void operator()(ARGS&&... args)
{
- LL_INFOS("Lua") << mBlock << ' ';
+ LL_DEBUGS("Lua") << mBlock << ' ';
stream_to(LL_CONT, std::forward<ARGS>(args)...);
LL_ENDL;
}