aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/debug/Log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/Log.cpp')
-rw-r--r--src/debug/Log.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug/Log.cpp b/src/debug/Log.cpp
index a4c5b08e..5a314833 100644
--- a/src/debug/Log.cpp
+++ b/src/debug/Log.cpp
@@ -4,7 +4,7 @@
#include "RollingLogFollow.hpp"
#include <fstream>
-#include <iostream>
+#include <print>
#include <fcntl.h>
void Debug::init(const std::string& IS) {
@@ -69,5 +69,5 @@ void Debug::log(LogLevel level, std::string str) {
// log it to the stdout too.
if (!disableStdout)
- std::cout << ((coloredLogs && !**coloredLogs) ? str : coloredStr) << "\n";
+ std::println("{}", ((coloredLogs && !**coloredLogs) ? str : coloredStr));
}