mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00

git-subtree-dir: thirdparty/spdlog git-subtree-split: 32177aa77a0a20453d3e7455cac42406fc49b6ca
18 lines
353 B
C++
18 lines
353 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"
|
|
|