From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-f67.google.com (mail-lf1-f67.google.com [209.85.167.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 701A8469711 for ; Tue, 26 May 2020 15:47:51 +0300 (MSK) Received: by mail-lf1-f67.google.com with SMTP id e125so12235127lfd.1 for ; Tue, 26 May 2020 05:47:51 -0700 (PDT) From: Cyrill Gorcunov Date: Tue, 26 May 2020 15:46:24 +0300 Message-Id: <20200526124627.82843-8-gorcunov@gmail.com> In-Reply-To: <20200526124627.82843-1-gorcunov@gmail.com> References: <20200526124627.82843-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v2 07/10] lua/log: declare log as separate variable List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml Cc: Alexander Turenko We gonna hide some internal symbols in sake of communication with box module, thus lets make it clear. Part-of #689 Signed-off-by: Cyrill Gorcunov --- src/lua/log.lua | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/src/lua/log.lua b/src/lua/log.lua index c6e03ad78..bee2851c8 100644 --- a/src/lua/log.lua +++ b/src/lua/log.lua @@ -187,16 +187,20 @@ local compat_v16 = { end; } -return setmetatable({ - warn = say_closure(S_WARN); - info = say_closure(S_INFO); - verbose = say_closure(S_VERBOSE); - debug = say_closure(S_DEBUG); - error = say_closure(S_ERROR); - rotate = log_rotate; - pid = log_pid; - level = log_level; - log_format = log_format; -}, { +local log ={ + warn = say_closure(S_WARN), + info = say_closure(S_INFO), + verbose = say_closure(S_VERBOSE), + debug = say_closure(S_DEBUG), + error = say_closure(S_ERROR), + rotate = log_rotate, + pid = log_pid, + level = log_level, + log_format = log_format, +} + +setmetatable(log, { __index = compat_v16; }) + +return log -- 2.26.2