mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
Kernel: Log time in addition to date in RTC startup
This commit is contained in:
parent
7903cfa5e4
commit
49d6405164
Notes:
sideshowbarker
2024-07-19 03:23:42 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/49d6405164c Pull-request: https://github.com/SerenityOS/serenity/pull/3228
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ time_t now()
|
|||
unsigned year, month, day, hour, minute, second;
|
||||
read_registers(year, month, day, hour, minute, second);
|
||||
|
||||
klog() << "RTC: Year: " << year << ", month: " << month << ", day: " << day;
|
||||
klog() << "RTC: Year: " << year << ", month: " << month << ", day: " << day << ", hour: " << hour << ", minute: " << minute << ", second: " << second;
|
||||
|
||||
ASSERT(year >= 2018);
|
||||
|
||||
|
|
Loading…
Reference in a new issue