spdlog/example/example.cpp

16 lines
262 B
C++
Raw Normal View History

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