소스 검색

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);
     VERIFY(!s_the);
     s_the = new CommandLine(s_cmd_line);
     s_the = new CommandLine(s_cmd_line);
+    dmesgln("Kernel Commandline: {}", kernel_command_line().string());
 }
 }
 
 
 UNMAP_AFTER_INIT CommandLine::CommandLine(const String& string)
 UNMAP_AFTER_INIT CommandLine::CommandLine(const String& string)