blob: 0f934204bf606e5b59c5c394cb6c19e4aef23c3b (
plain) (
tree)
|
|
#include "core/Core.hpp"
#include "core/Event.hpp"
const char *getTimeSinceProgramStart(void) {
static auto initialTime = std::chrono::steady_clock().now();
auto now = std::chrono::steady_clock().now();
std::chrono::duration<double> seconds = now-initialTime;
static char buffer[30];
sprintf(buffer, "%.2f", seconds.count());
return buffer;
}
INITIALIZE_EASYLOGGINGPP
int main_old() {
el::Configurations loggerConfiguration;
el::Helpers::installCustomFormatSpecifier(
el::CustomFormatSpecifier("%startTime", std::bind(getTimeSinceProgramStart)));
std::string format = "[%startTime][%level][%thread][%fbase]: %msg";
loggerConfiguration.set(el::Level::Info, el::ConfigurationType::Format, format);
loggerConfiguration.set(el::Level::Error, el::ConfigurationType::Format, format);
loggerConfiguration.set(el::Level::Fatal, el::ConfigurationType::Format, format);
loggerConfiguration.set(el::Level::Warning, el::ConfigurationType::Format, format);
el::Helpers::setThreadName("Render");
el::Loggers::reconfigureAllLoggers(loggerConfiguration);
el::Loggers::addFlag(el::LoggingFlag::ColoredTerminalOutput);
LOG(INFO) << "Logger is configured";
LOG(WARNING)<<"Sizeof EventData is "<<sizeof(EventData);
Core core;
core.Exec();
return 0;
}
|