On Thu, Oct 13, 2011 at 12:22:05AM +0700, Darmawan Salihun wrote:
I also have another question. What is the maximum logging level in SeaBIOS? Is it 8?
The debug level is compared against the value passed to the various dprintf() calls - the current code goes up to 20 I think.
That said, debug levels over 8 generally cause too much debug output. If you're not finding what you need at 8, generally the next step would be to add dprintf() statements, modify existing dprintf() statements, or modify the DEBUG_xxx defines in src/config.h.
-Kevin
On 10/13/11, Kevin O'Connor kevin@koconnor.net wrote:
On Thu, Oct 13, 2011 at 12:22:05AM +0700, Darmawan Salihun wrote:
I also have another question. What is the maximum logging level in SeaBIOS? Is it 8?
The debug level is compared against the value passed to the various dprintf() calls - the current code goes up to 20 I think.
That said, debug levels over 8 generally cause too much debug output. If you're not finding what you need at 8, generally the next step would be to add dprintf() statements, modify existing dprintf() statements, or modify the DEBUG_xxx defines in src/config.h.
-Kevin
OK. I'll try debug level 8 then. Thanks.
-Darmawan