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

2020-10-04 Thread Simon Glass
Hi Heinrich, On Tue, 22 Sep 2020 at 16:03, Simon Glass wrote: > > Hi Heinrich, > > On Tue, 22 Sep 2020 at 13:10, Heinrich Schuchardt wrote: > > > > On 9/22/20 8:48 PM, Simon Glass wrote: > > > Hi Heinrich, > > > > > > On Thu, 17 Sep 2020 at 06:19, Heinrich Schuchardt > > > wrote: > > >> > > >>

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

2020-09-22 Thread Simon Glass
Hi Heinrich, On Tue, 22 Sep 2020 at 13:10, Heinrich Schuchardt wrote: > > On 9/22/20 8:48 PM, Simon Glass wrote: > > Hi Heinrich, > > > > On Thu, 17 Sep 2020 at 06:19, Heinrich Schuchardt > > wrote: > >> > >> Some drivers use macro pr_cont() for continuing a message sent via printk. > >> Hence

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

2020-09-22 Thread Heinrich Schuchardt
On 9/22/20 8:48 PM, Simon Glass wrote: > Hi Heinrich, > > On Thu, 17 Sep 2020 at 06:19, 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 contin

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

2020-09-22 Thread Simon Glass
Hi Heinrich, On Thu, 17 Sep 2020 at 06:19, 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() doe

[PATCH 1/2] log: allow for message continuation

2020-09-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. W