Unverified Commit 7bd5ccaa authored by mymilkbottles's avatar mymilkbottles Committed by GitHub
Browse files

Merge pull request #1 from mymilkbottles/mymilkbottles-log-level-judge

Optimize lua log level judgment
parents af5c1187 25063f75
...@@ -959,6 +959,7 @@ int luaLogCommand(lua_State *lua) { ...@@ -959,6 +959,7 @@ int luaLogCommand(lua_State *lua) {
lua_pushstring(lua, "Invalid debug level."); lua_pushstring(lua, "Invalid debug level.");
return lua_error(lua); return lua_error(lua);
} }
if (level < server.verbosity) return 0;
/* Glue together all the arguments */ /* Glue together all the arguments */
log = sdsempty(); log = sdsempty();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment