1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-04-29 03:53:54 +00:00
spdlog/example/example.cpp
2019-04-06 00:15:14 +03:00

19 lines
327 B
C++

//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
//
// spdlog usage example
//
//
#include "spdlog/spdlog.h"
#include "spdlog/logger.h"
spdlog::logger *get_logger();
int main(int, char *[])
{
auto *l = get_logger();
l->info("HEllo {}", "HG FS");
}