This commit is contained in:
fourtf
2018-06-26 13:24:55 +02:00
parent ec04f10895
commit c9722b9780
301 changed files with 0 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#pragma once
#include "util/helpers.hpp"
#include <QDebug>
#include <QTime>
namespace chatterino {
namespace debug {
template <typename... Args>
inline void Log(const std::string &formatString, Args &&... args)
{
qDebug().noquote() << QTime::currentTime().toString("hh:mm:ss.zzz")
<< fS(formatString, std::forward<Args>(args)...).c_str();
}
} // namespace debug
} // namespace chatterino