spdlog/example/example.cpp
2019-05-11 20:06:17 +03:00

16 lines
261 B
C++

//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
//
// spdlog usage example
//
//
#include "spdlog/spdlog.h"
int main(int, char *[])
{
int i = 123;
spdlog::info("HELLO STATIC! {}", i);
}