refectored file names

This commit is contained in:
gabime
2019-12-21 17:47:02 +02:00
parent fc3d18ed64
commit 773b8c5a54
10 changed files with 57 additions and 66 deletions

View File

@@ -21,12 +21,14 @@ void syslog_example();
#include <spdlog/spdlog.h>
#include <spdlog/sinks/stdout_color_sinks.h>
#include <spdlog/cfg/env.h>
#include <spdlog/cfg/argv_loader.h>
#include <spdlog/cfg/argv.h>
int main(int args, char *argv[])
{
// spdlog::cfg::init_from_env();
spdlog::cfg::init_from_argv(args, argv);
//spdlog::cfg::env::load_levels();
spdlog::cfg::argv::load_levels(args, argv);
spdlog::info("HELLO INFO");
auto l1 = spdlog::stderr_color_st("l1");