summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2020-08-20 10:39:34 -0400
committerAndreas Kling <kling@serenityos.org>2020-08-20 20:53:43 +0200
commit49d6405164cb3d0c00c8f2c9f3d33cb5befde19b (patch)
tree203e434cf152ff8dab08c0de333e3eae2b818e07 /Kernel
parent7903cfa5e47db99e213d246a672fc2459f7e6701 (diff)
downloadserenity-49d6405164cb3d0c00c8f2c9f3d33cb5befde19b.zip
Kernel: Log time in addition to date in RTC startup
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/RTC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/RTC.cpp b/Kernel/RTC.cpp
index 901d13687f..675f773525 100644
--- a/Kernel/RTC.cpp
+++ b/Kernel/RTC.cpp
@@ -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);