Re: [RFC v2 12/14] lib: convert to per line logging

2023-12-16 Thread Andrew Rybchenko
On 12/8/23 17:59, David Marchand wrote: Convert many libraries that call RTE_LOG(... "\n", ...) to RTE_LOG_LINE. Note: - for acl and sched libraries that still has some debug multilines messages, a direct call to RTE_LOG is used: this will make it easier to notice such special cases, Sign

Re: [RFC v2 12/14] lib: convert to per line logging

2023-12-11 Thread David Marchand
On Fri, Dec 8, 2023 at 6:16 PM Stephen Hemminger wrote: > > On Fri, 8 Dec 2023 15:59:46 +0100 > David Marchand wrote: > > > Convert many libraries that call RTE_LOG(... "\n", ...) to RTE_LOG_LINE. > > > > Note: > > - for acl and sched libraries that still has some debug multilines > > messages

Re: [RFC v2 12/14] lib: convert to per line logging

2023-12-08 Thread Stephen Hemminger
On Fri, 8 Dec 2023 15:59:46 +0100 David Marchand wrote: > Convert many libraries that call RTE_LOG(... "\n", ...) to RTE_LOG_LINE. > > Note: > - for acl and sched libraries that still has some debug multilines > messages, a direct call to RTE_LOG is used: this will make it easier to > notic