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