From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-f65.google.com (mail-lf1-f65.google.com [209.85.167.65]) (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 7DE594696C2 for ; Wed, 3 Jun 2020 01:19:31 +0300 (MSK) Received: by mail-lf1-f65.google.com with SMTP id w15so16176lfe.11 for ; Tue, 02 Jun 2020 15:19:31 -0700 (PDT) From: Cyrill Gorcunov Date: Wed, 3 Jun 2020 01:18:11 +0300 Message-Id: <20200602221817.645015-7-gorcunov@gmail.com> In-Reply-To: <20200602221817.645015-1-gorcunov@gmail.com> References: <20200602221817.645015-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v8 06/12] lua/log: declare log as separate variable List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml We gonna hide some internal symbols in sake of communication with box module, thus lets make it clear. Part-of #689 Reviewed-by: Oleg Babin Reviewed-by: Leonid Vasiliev 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 d5a99076d..746e0d82f 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