From e0ac21086be9c1d828e420c2f5fbe2b7a5271eef Mon Sep 17 00:00:00 2001 From: Maximilian Seidler Date: Fri, 25 Oct 2024 07:49:40 +0200 Subject: [PATCH] misc: remove redundant printf in RASSERT --- src/helpers/Log.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/helpers/Log.hpp b/src/helpers/Log.hpp index 863512e6..ebf8c4db 100644 --- a/src/helpers/Log.hpp +++ b/src/helpers/Log.hpp @@ -18,7 +18,6 @@ enum eLogLevel { Debug::log(CRIT, "\n==========================================================================================\nASSERTION FAILED! \n\n{}\n\nat: line {} in {}", \ std::format(reason, ##__VA_ARGS__), __LINE__, \ ([]() constexpr -> std::string { return std::string(__FILE__).substr(std::string(__FILE__).find_last_of('/') + 1); })().c_str()); \ - printf("Assertion failed! See the log in /tmp/hypr/hyprland.log for more info."); \ std::abort(); \ }