2019-03-24 06:40:27 +08:00
|
|
|
//
|
|
|
|
// Copyright(c) 2015 Gabi Melman.
|
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
2019-05-12 22:05:14 +08:00
|
|
|
|
2019-03-24 06:40:27 +08:00
|
|
|
// spdlog usage example
|
|
|
|
|
2019-05-12 05:34:55 +08:00
|
|
|
#include <cstdio>
|
|
|
|
|
2019-05-12 05:32:57 +08:00
|
|
|
#include "spdlog/spdlog.h"
|
2019-08-23 00:58:49 +08:00
|
|
|
|
|
|
|
int main(int, char *[])
|
|
|
|
{
|
2019-08-27 05:58:01 +08:00
|
|
|
spdlog::info("Welcome to spdlog version {}.{}.{} !", SPDLOG_VER_MAJOR, SPDLOG_VER_MINOR, SPDLOG_VER_PATCH);
|
|
|
|
spdlog::warn("Easy padding in numbers like {:08d}", 12);
|
|
|
|
spdlog::critical("Support for int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}", 42);
|
|
|
|
spdlog::info("Support for floats {:03.2f}", 1.23456);
|
|
|
|
spdlog::info("Positional args are {1} {0}..", "too", "supported");
|
|
|
|
spdlog::info("{:>8} aligned, {:<8} aligned", "right", "left");
|
2019-09-05 19:37:25 +08:00
|
|
|
}
|