2016-04-20 04:57:49 -04:00
|
|
|
#pragma once
|
|
|
|
|
2018-03-09 08:26:33 -05:00
|
|
|
#include "catch.hpp"
|
|
|
|
#include "utils.h"
|
|
|
|
#include <chrono>
|
2016-04-20 04:57:49 -04:00
|
|
|
#include <cstdio>
|
2018-03-09 08:26:33 -05:00
|
|
|
#include <exception>
|
2016-04-20 04:57:49 -04:00
|
|
|
#include <fstream>
|
2018-08-17 10:17:16 -04:00
|
|
|
#include <iostream>
|
2018-08-25 10:55:31 -04:00
|
|
|
#include <ostream>
|
2019-06-04 09:35:34 -04:00
|
|
|
#include <sstream>
|
2018-03-09 08:26:33 -05:00
|
|
|
#include <string>
|
2019-06-04 09:35:34 -04:00
|
|
|
#include <iomanip>
|
2016-04-20 04:57:49 -04:00
|
|
|
|
2018-11-11 11:15:24 -05:00
|
|
|
#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_DEBUG
|
2017-10-12 19:04:31 -04:00
|
|
|
|
2018-10-11 20:04:55 -04:00
|
|
|
#include "spdlog/spdlog.h"
|
2018-04-28 18:34:36 -04:00
|
|
|
#include "spdlog/async.h"
|
2018-07-07 06:22:43 -04:00
|
|
|
#include "spdlog/sinks/basic_file_sink.h"
|
2018-04-28 18:34:36 -04:00
|
|
|
#include "spdlog/sinks/daily_file_sink.h"
|
|
|
|
#include "spdlog/sinks/null_sink.h"
|
|
|
|
#include "spdlog/sinks/ostream_sink.h"
|
2018-04-28 18:36:45 -04:00
|
|
|
#include "spdlog/sinks/rotating_file_sink.h"
|
|
|
|
#include "spdlog/sinks/stdout_color_sinks.h"
|
2019-05-12 17:09:00 -04:00
|
|
|
#include "spdlog/details/pattern_formatter.h"
|