瀏覽代碼

Kernel: Print commandline after initializing it

Liav A 4 年之前
父節點
當前提交
df84fdfd2c
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      Kernel/CommandLine.cpp

+ 1 - 0
Kernel/CommandLine.cpp

@@ -34,6 +34,7 @@ UNMAP_AFTER_INIT void CommandLine::initialize()
 {
     VERIFY(!s_the);
     s_the = new CommandLine(s_cmd_line);
+    dmesgln("Kernel Commandline: {}", kernel_command_line().string());
 }
 
 UNMAP_AFTER_INIT CommandLine::CommandLine(const String& string)