From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp61.i.mail.ru (smtp61.i.mail.ru [217.69.128.41]) (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 90CAA42EF5C for ; Thu, 2 Jul 2020 13:05:40 +0300 (MSK) References: <20200702095054.367131-1-gorcunov@gmail.com> <20200702095054.367131-3-gorcunov@gmail.com> From: Oleg Babin Message-ID: <1ed0cd76-9a93-0235-a580-ec046d8a3a0b@tarantool.org> Date: Thu, 2 Jul 2020 13:05:38 +0300 MIME-Version: 1.0 In-Reply-To: <20200702095054.367131-3-gorcunov@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-GB Subject: Re: [Tarantool-patches] [PATCH v3 2/3] lua/log: allow to use json formatter early List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Cyrill Gorcunov , tml Cc: yaroslav.dynnikov@gmail.com Hi! Thanks for your patch! LGTM! See one minor nitpick below. I hope you could just force-pushed proposed change. On 02/07/2020 12:50, Cyrill Gorcunov wrote: > -- Set value to log from box.cfg{}. > -local function box_api_cfg_set(key, value) > +local function box_api_cfg_set(cfg, key, value) > local log_key = box2log_keys[key] > + local aux_data Seems this variable is unused and could be dropped.