2016-04-20 04:57:49 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <fstream>
|
|
|
|
#include <string>
|
|
|
|
#include <ostream>
|
|
|
|
#include <chrono>
|
|
|
|
#include <exception>
|
|
|
|
|
|
|
|
#include "catch.hpp"
|
|
|
|
#include "utils.h"
|
|
|
|
|
2017-10-12 19:04:31 -04:00
|
|
|
#define SPDLOG_TRACE_ON
|
|
|
|
#define SPDLOG_DEBUG_ON
|
|
|
|
|
2016-04-20 04:57:49 -04:00
|
|
|
#include "../include/spdlog/spdlog.h"
|
|
|
|
#include "../include/spdlog/sinks/null_sink.h"
|
|
|
|
#include "../include/spdlog/sinks/ostream_sink.h"
|
|
|
|
|