diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-06-18 18:02:47 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-06-18 18:02:47 -0400 |
commit | bac8ced279bb4b3ec49e497b75021b86a0b4d857 (patch) | |
tree | d786cfcb1f24fb92e9b45877c987b6a5bc0b0f06 | |
parent | c6001e6a20389b4d32813c7f61b56ff79f575723 (diff) |
Use LL_DEBUGS("Lua") for LuaLog.
We might decide to leave some of them in place.
-rw-r--r-- | indra/llcommon/lua_function.h | 2 |
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; } |