Skip to content

Commit

Permalink
increase log verbosity in debug builds
Browse files Browse the repository at this point in the history
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
  • Loading branch information
stewartsmith committed Feb 19, 2018
1 parent 03e90a0 commit 00eaf79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 00eaf79

Please sign in to comment.