mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
354 B
C++
20 lines
354 B
C++
#pragma once
|
|
|
|
#include <cstdio>
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <ostream>
|
|
#include <chrono>
|
|
#include <exception>
|
|
|
|
#include "catch.hpp"
|
|
#include "utils.h"
|
|
|
|
#define SPDLOG_TRACE_ON
|
|
#define SPDLOG_DEBUG_ON
|
|
|
|
#include "../include/spdlog/spdlog.h"
|
|
#include "../include/spdlog/sinks/null_sink.h"
|
|
#include "../include/spdlog/sinks/ostream_sink.h"
|
|
|