From patchwork Wed Mar 18 00:58:08 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xiaolong Ye X-Patchwork-Id: 66820 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3EA2FA056A; Wed, 18 Mar 2020 02:08:00 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 96B7B1C025; Wed, 18 Mar 2020 02:07:59 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id B11EF1BF7E; Wed, 18 Mar 2020 02:07:57 +0100 (CET) IronPort-SDR: +vFZyCcxSzTlDQJm0tokH2QsNYJuv1HINGnTaQlcaA8QsISJLu1GZGbnRmzf/ITYiL9Br5cbs2 gUydmDjFSsYg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Mar 2020 18:07:56 -0700 IronPort-SDR: lC/KLdlj94eFFIZ4b0w2EUFVQ5WxW3Z9HhCU9Af0kTCVyIEdStnAtk+OuxLCL13VB/kBIPMGor UVhWzP+PVkIQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,565,1574150400"; d="scan'208";a="248013772" Received: from dpdk_yexl_af_xdp.sh.intel.com ([10.67.119.201]) by orsmga006.jf.intel.com with ESMTP; 17 Mar 2020 18:07:54 -0700 From: Xiaolong Ye To: John McNamara , Marko Kovacevic Cc: dev@dpdk.org, stephen@networkplumber.org, Xiaolong Ye , stable@dpdk.org Date: Wed, 18 Mar 2020 08:58:08 +0800 Message-Id: <20200318005808.19229-1-xiaolong.ye@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200317083106.17727-1-xiaolong.ye@intel.com> References: <20200317083106.17727-1-xiaolong.ye@intel.com> Subject: [dpdk-dev] [PATCH v2] doc: fix incorrect example for specifying log level X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Now we need to add prefix like lib. to enable the log, also changing val 8 to "debug"" which would be more descriptive. Fixes: ffb9fd1b0808 ("log: update legacy modules dynamic logs regex") Cc: stable@dpdk.org Reported-by: Haiyue Wang Signed-off-by: Xiaolong Ye --- doc/guides/linux_gsg/eal_args.include.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/linux_gsg/eal_args.include.rst b/doc/guides/linux_gsg/eal_args.include.rst index ed8b0e35b..7b2f6b1d4 100644 --- a/doc/guides/linux_gsg/eal_args.include.rst +++ b/doc/guides/linux_gsg/eal_args.include.rst @@ -132,7 +132,7 @@ Debugging options Specify log level for a specific component. For example:: - --log-level eal:8 + --log-level lib.eal:debug Can be specified multiple times.