Re: [PATCH v2 2/3] log: allow for message continuation

2020-10-28 Thread Tom Rini
On Sat, Oct 17, 2020 at 02:31:58PM +0200, Heinrich Schuchardt wrote: > Some drivers use macro pr_cont() for continuing a message sent via printk. > Hence if we want to convert printk messaging to using the logging system, > we must support continuation of log messages too. > > As pr_cont() does

Re: [PATCH v2 2/3] log: allow for message continuation

2020-10-26 Thread Simon Glass
On Sat, 17 Oct 2020 at 06:32, Heinrich Schuchardt wrote: > > Some drivers use macro pr_cont() for continuing a message sent via printk. > Hence if we want to convert printk messaging to using the logging system, > we must support continuation of log messages too. > > As pr_cont() does not provide

[PATCH v2 2/3] log: allow for message continuation

2020-10-17 Thread Heinrich Schuchardt
Some drivers use macro pr_cont() for continuing a message sent via printk. Hence if we want to convert printk messaging to using the logging system, we must support continuation of log messages too. As pr_cont() does not provide a message level we need a means of remembering the last log level.