disabled updates as a test

This commit is contained in:
fourtf
2019-10-03 20:09:58 +02:00
parent 2b9b96abb5
commit f8c4ac8c17
5 changed files with 76 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
#pragma once
#include "util/Helpers.hpp"
#include <QDebug>
#include <QTime>
namespace AB_NAMESPACE {
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();
}
template <typename... Args>
inline void log(const char *formatString, Args &&... args)
{
log(std::string(formatString), std::forward<Args>(args)...);
}
template <typename... Args>
inline void log(const QString &formatString, Args &&... args)
{
log(formatString.toStdString(), std::forward<Args>(args)...);
}
} // namespace AB_NAMESPACE