Re: [Qemu-devel] [PATCH v2 1/8] i.MX: Standardize i.MX serial debug.

2015-10-22 Thread Peter Crosthwaite
On Wed, Oct 21, 2015 at 2:35 PM, Jean-Christophe Dubois wrote: > The goal is to have debug code always compiled during build. > > We standardize all debug output on the following format: > > [QOM_TYPE_NAME]reporting_function: debug message > > We also replace IPRINTF with qemu_log_mask(). The qemu

[Qemu-devel] [PATCH v2 1/8] i.MX: Standardize i.MX serial debug.

2015-10-21 Thread Jean-Christophe Dubois
The goal is to have debug code always compiled during build. We standardize all debug output on the following format: [QOM_TYPE_NAME]reporting_function: debug message We also replace IPRINTF with qemu_log_mask(). The qemu_log_mask() output is following the same format as the above debug. Signed