spdlog/example/example.cpp

16 lines
261 B
C++
Raw Normal View History

2019-03-24 00:40:27 +02:00
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
//
// spdlog usage example
//
//
2019-04-06 00:15:14 +03:00
#include "spdlog/spdlog.h"
2019-03-24 00:40:27 +02:00
2019-05-11 20:06:17 +03:00
int main(int, char *[])
{
2019-05-11 13:19:53 +03:00
int i = 123;
spdlog::info("HELLO STATIC! {}", i);
}