Merge pull request #39031 from teto/loglevel

kernel: fix boot.consoleLogLevel description

Changed files
+2 -2
nixos
modules
system
boot
+2 -2
nixos/modules/system/boot/kernel.nix
···
type = types.int;
default = 4;
description = ''
-
The kernel console log level. Log messages with a priority
-
numerically less than this will not appear on the console.
'';
};
···
type = types.int;
default = 4;
description = ''
+
The kernel console <literal>loglevel</literal>. All Kernel Messages with a log level smaller
+
than this setting will be printed to the console.
'';
};