aboutsummaryrefslogtreecommitdiff
path: root/core/init.c
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.vnet.ibm.com>2018-02-18 23:45:18 -0600
committerStewart Smith <stewart@linux.vnet.ibm.com>2018-02-18 23:45:18 -0600
commit00eaf79e5da96db7f59ba0a7e683abe48ce02583 (patch)
tree02ce53820e2285f6d13fbcbab6fc82a09373fcad /core/init.c
parent03e90a0629bdbd3bae70fd4c531b2c800d4b922c (diff)
downloadskiboot-00eaf79e5da96db7f59ba0a7e683abe48ce02583.zip
skiboot-00eaf79e5da96db7f59ba0a7e683abe48ce02583.tar.gz
skiboot-00eaf79e5da96db7f59ba0a7e683abe48ce02583.tar.bz2
increase log verbosity in debug builds
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'core/init.c')
-rw-r--r--core/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/init.c b/core/init.c
index 02094bf..a69e4bb 100644
--- a/core/init.c
+++ b/core/init.c
@@ -74,7 +74,7 @@ struct debug_descriptor debug_descriptor = {
/* console log level:
* high 4 bits in memory, low 4 bits driver (e.g. uart). */
#ifdef DEBUG
- .console_log_levels = (PR_DEBUG << 4) | PR_DEBUG,
+ .console_log_levels = (PR_TRACE << 4) | PR_DEBUG,
#else
.console_log_levels = (PR_DEBUG << 4) | PR_NOTICE,
#endif