spdlog/lite-example/example.cpp

12 lines
298 B
C++
Raw Normal View History

2019-03-30 14:53:02 +03:00
// Copyright(c) 2015-present Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
2019-03-23 17:25:50 +02:00
#include "spdlite.h"
2019-03-30 14:53:02 +03:00
#include "spdlite_global.h"
2019-03-23 13:31:57 +02:00
2019-03-30 14:53:02 +03:00
#define SPDLITE_ACTIVE_LEVEL SPDLITE_LEVEL_TRACE
#include "spdlite_macros.h"
2019-03-23 13:31:57 +02:00
int main()
2019-03-30 14:53:02 +03:00
{
SPDLITE_TRACE("SOME INFO {}", 123);
2019-03-23 13:31:57 +02:00
}