2019-05-10 00:30:44 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "catch.hpp"
|
|
|
|
#include "utils.h"
|
|
|
|
#include <chrono>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <exception>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
#include <ostream>
|
2019-09-29 20:13:24 +02:00
|
|
|
#include <sstream>
|
2019-05-10 00:30:44 +02:00
|
|
|
#include <string>
|
2019-09-29 20:13:24 +02:00
|
|
|
#include <iomanip>
|
2020-04-11 22:31:39 +02:00
|
|
|
#include <stdlib.h>
|
2019-05-10 00:30:44 +02:00
|
|
|
|
|
|
|
#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_DEBUG
|
|
|
|
|
|
|
|
#include "spdlog/spdlog.h"
|
|
|
|
#include "spdlog/async.h"
|
|
|
|
#include "spdlog/sinks/basic_file_sink.h"
|
|
|
|
#include "spdlog/sinks/daily_file_sink.h"
|
|
|
|
#include "spdlog/sinks/null_sink.h"
|
|
|
|
#include "spdlog/sinks/ostream_sink.h"
|
|
|
|
#include "spdlog/sinks/rotating_file_sink.h"
|
|
|
|
#include "spdlog/sinks/stdout_color_sinks.h"
|
2020-04-11 22:31:39 +02:00
|
|
|
#include "spdlog/pattern_formatter.h"
|