Re: [PATCH 4/5] log: convert pr_*() to logging

2021-03-01 Thread Tom Rini
On Mon, Jan 04, 2021 at 08:02:55AM +0100, Heinrich Schuchardt wrote: > In drivers we use a family of printing functions including pr_err() and > pr_cont(). CONFIG_LOGLEVEL is used to control which of these lead to output > via printf(). > > Our logging functions allow finer grained control of

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-02-18 Thread Patrice CHOTARD
Hi Tom On 2/18/21 2:05 PM, Tom Rini wrote: > On Thu, Feb 18, 2021 at 10:16:58AM +0100, Heinrich Schuchardt wrote: >> On 18.01.21 16:30, Tom Rini wrote: >>> On Mon, Jan 18, 2021 at 08:02:41AM -0500, Tom Rini wrote: On Sun, Jan 17, 2021 at 08:37:15AM +0100, Heinrich Schuchardt wrote: > On

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-02-18 Thread Tom Rini
On Thu, Feb 18, 2021 at 10:16:58AM +0100, Heinrich Schuchardt wrote: > On 18.01.21 16:30, Tom Rini wrote: > > On Mon, Jan 18, 2021 at 08:02:41AM -0500, Tom Rini wrote: > >> On Sun, Jan 17, 2021 at 08:37:15AM +0100, Heinrich Schuchardt wrote: > >>> On 1/17/21 1:16 AM, Tom Rini wrote: > On Mon,

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-02-18 Thread Heinrich Schuchardt
On 18.01.21 16:30, Tom Rini wrote: > On Mon, Jan 18, 2021 at 08:02:41AM -0500, Tom Rini wrote: >> On Sun, Jan 17, 2021 at 08:37:15AM +0100, Heinrich Schuchardt wrote: >>> On 1/17/21 1:16 AM, Tom Rini wrote: On Mon, Jan 04, 2021 at 08:02:55AM +0100, Heinrich Schuchardt wrote: > In

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-01-18 Thread Tom Rini
On Mon, Jan 18, 2021 at 08:02:41AM -0500, Tom Rini wrote: > On Sun, Jan 17, 2021 at 08:37:15AM +0100, Heinrich Schuchardt wrote: > > On 1/17/21 1:16 AM, Tom Rini wrote: > > > On Mon, Jan 04, 2021 at 08:02:55AM +0100, Heinrich Schuchardt wrote: > > > > > > > In drivers we use a family of printing

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-01-18 Thread Tom Rini
On Sun, Jan 17, 2021 at 08:37:15AM +0100, Heinrich Schuchardt wrote: > On 1/17/21 1:16 AM, Tom Rini wrote: > > On Mon, Jan 04, 2021 at 08:02:55AM +0100, Heinrich Schuchardt wrote: > > > > > In drivers we use a family of printing functions including pr_err() and > > > pr_cont(). CONFIG_LOGLEVEL is

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-01-17 Thread Heinrich Schuchardt
On 1/17/21 11:27 PM, Sean Anderson wrote: On 1/17/21 2:26 AM, Heinrich Schuchardt wrote: On 1/17/21 1:37 AM, Sean Anderson wrote: On 1/4/21 2:02 AM, Heinrich Schuchardt wrote: In drivers we use a family of printing functions including pr_err() and pr_cont(). CONFIG_LOGLEVEL is used to control

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-01-17 Thread Sean Anderson
On 1/17/21 2:26 AM, Heinrich Schuchardt wrote: On 1/17/21 1:37 AM, Sean Anderson wrote: On 1/4/21 2:02 AM, Heinrich Schuchardt wrote: In drivers we use a family of printing functions including pr_err() and pr_cont(). CONFIG_LOGLEVEL is used to control which of these lead to output via

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-01-16 Thread Heinrich Schuchardt
On 1/17/21 1:16 AM, Tom Rini wrote: On Mon, Jan 04, 2021 at 08:02:55AM +0100, Heinrich Schuchardt wrote: In drivers we use a family of printing functions including pr_err() and pr_cont(). CONFIG_LOGLEVEL is used to control which of these lead to output via printf(). Our logging functions

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-01-16 Thread Heinrich Schuchardt
On 1/17/21 1:37 AM, Sean Anderson wrote: On 1/4/21 2:02 AM, Heinrich Schuchardt wrote: In drivers we use a family of printing functions including pr_err() and pr_cont(). CONFIG_LOGLEVEL is used to control which of these lead to output via printf(). Our logging functions allow finer grained

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-01-16 Thread Sean Anderson
On 1/4/21 2:02 AM, Heinrich Schuchardt wrote: In drivers we use a family of printing functions including pr_err() and pr_cont(). CONFIG_LOGLEVEL is used to control which of these lead to output via printf(). Our logging functions allow finer grained control of output. So replace printf() by the

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-01-16 Thread Tom Rini
On Mon, Jan 04, 2021 at 08:02:55AM +0100, Heinrich Schuchardt wrote: > In drivers we use a family of printing functions including pr_err() and > pr_cont(). CONFIG_LOGLEVEL is used to control which of these lead to output > via printf(). > > Our logging functions allow finer grained control of

Re: [PATCH 4/5] log: convert pr_*() to logging

2021-01-07 Thread Simon Glass
Hi Heinrich, On Mon, 4 Jan 2021 at 00:03, Heinrich Schuchardt wrote: > > In drivers we use a family of printing functions including pr_err() and > pr_cont(). CONFIG_LOGLEVEL is used to control which of these lead to output > via printf(). > > Our logging functions allow finer grained control of

[PATCH 4/5] log: convert pr_*() to logging

2021-01-03 Thread Heinrich Schuchardt
In drivers we use a family of printing functions including pr_err() and pr_cont(). CONFIG_LOGLEVEL is used to control which of these lead to output via printf(). Our logging functions allow finer grained control of output. So replace printf() by the matching logging functions. The usage of