Update helpers.hpp

This commit is contained in:
wheremyfoodat 2024-12-05 01:13:06 +02:00 committed by GitHub
parent 63cbfbb523
commit 2ba0ad6a06
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,6 +7,8 @@
#include <string>
#include <vector>
#include <memory>
#include <thread>
#include <chrono>
#include "termcolor.hpp"
@ -47,7 +49,7 @@ namespace Helpers {
std::cout << termcolor::on_red << "[FATAL] ";
std::printf(fmt, args...);
std::cout << termcolor::reset << "\n";
std::this_thread::sleep_for(std::chrono::minutes(5));
exit(1);
}