Re: [PATCH] net/zxdh: remove redundant log prefix

2024-11-06 Thread Ferruh Yigit
On 11/6/2024 9:08 AM, David Marchand wrote: > By using RTE_LOG*() macros, the log messages are prefixed by the logtype. > > RTE_LOG_LINE_PREFIX(level, ZXDH_RX, "zxdh rx %s(): ", ... > will emit messages like "ZXDH_RX: zxdh rx %s(): ...\n" > > There is no need to add a prefix repeating the same in

Re: net/zxdh: remove redundant log prefix

2024-11-06 Thread Junlong Wang
Hi, David, Sorry, my negligence caused this issue. Thank you for helping with the modifications.

[PATCH] net/zxdh: remove redundant log prefix

2024-11-06 Thread David Marchand
By using RTE_LOG*() macros, the log messages are prefixed by the logtype. RTE_LOG_LINE_PREFIX(level, ZXDH_RX, "zxdh rx %s(): ", ... will emit messages like "ZXDH_RX: zxdh rx %s(): ...\n" There is no need to add a prefix repeating the same information. Signed-off-by: David Marchand --- Note: thi