Welcome to mirror list, hosted at ThFree Co, Russian Federation.

example.cpp « example - github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 519e1a7e24d8ecf16949f2ec986b28978e974d55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// 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);
}