From c9dd084d58b024afd6abb683ad30357d887586ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sat, 11 Jan 2020 21:36:09 +0100 Subject: [PATCH] kernel: Also add the debug level to the "info" KDL command --- src/system/kernel/system_info.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/system/kernel/system_info.cpp b/src/system/kernel/system_info.cpp index 554a88a861..6b7ea50aeb 100644 --- a/src/system/kernel/system_info.cpp +++ b/src/system/kernel/system_info.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004-2014, Haiku, Inc. + * Copyright (c) 2004-2020, Haiku, Inc. * Distributed under the terms of the MIT license. * * Authors: @@ -49,8 +49,8 @@ const static char *kKernelName = "kernel_" HAIKU_ARCH; static int dump_info(int argc, char **argv) { - kprintf("kernel build: %s %s (gcc%d %s)\n", __DATE__, __TIME__, __GNUC__, - __VERSION__); + kprintf("kernel build: %s %s (gcc%d %s), debug level %d\n", __DATE__, + __TIME__, __GNUC__, __VERSION__, KDEBUG_LEVEL); kprintf("revision: %s\n\n", get_haiku_revision()); kprintf("cpu count: %" B_PRId32 "\n", smp_get_num_cpus());