aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/debug/Log.cpp
diff options
context:
space:
mode:
authorFelix Dick <[email protected]>2022-09-25 20:07:48 +0200
committerFelix Dick <[email protected]>2022-09-25 20:07:48 +0200
commitbf3f519eb76bfa8d5f7d71f882b7b803c699aee1 (patch)
tree77126f8d49917fc0bcd44af7859e88fb88d7bfaa /src/debug/Log.cpp
parent190229942f60ea5b8905a673ddea44c05da14de3 (diff)
downloadHyprland-bf3f519eb76bfa8d5f7d71f882b7b803c699aee1.tar.gz
Hyprland-bf3f519eb76bfa8d5f7d71f882b7b803c699aee1.zip
Remove trailing whitespace.
Diffstat (limited to 'src/debug/Log.cpp')
-rw-r--r--src/debug/Log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/Log.cpp b/src/debug/Log.cpp
index 403098e4..dab8f0a7 100644
--- a/src/debug/Log.cpp
+++ b/src/debug/Log.cpp
@@ -58,7 +58,7 @@ void Debug::log(LogLevel level, const char* fmt, ...) {
if (disableTime && !*disableTime) {
auto timet = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
const auto MILLIS = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count() % 1000;
-
+
ofs << std::put_time(std::localtime(&timet), "[%H:%M:%S:");
if (MILLIS > 99)