From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp62.i.mail.ru (smtp62.i.mail.ru [217.69.128.42]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id CF4D1469710 for ; Thu, 28 May 2020 13:40:36 +0300 (MSK) From: Oleg Babin References: <20200528100738.221911-1-gorcunov@gmail.com> <20200528100738.221911-6-gorcunov@gmail.com> Message-ID: <60f6ebaa-52eb-3d8e-5dbc-b9ba74265f59@tarantool.org> Date: Thu, 28 May 2020 13:40:35 +0300 MIME-Version: 1.0 In-Reply-To: <20200528100738.221911-6-gorcunov@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-GB Content-Transfer-Encoding: 7bit Subject: Re: [Tarantool-patches] [PATCH v4 5/8] lua/log: declare log as separate variable List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Cyrill Gorcunov , tml Hi! Thanks for your patch. LGTM. On 28/05/2020 13:07, Cyrill Gorcunov wrote: > 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 2491501f7..4b078d598 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 >