Getting Started
Include the spdlog library
To use spdlog, include the header file in your C++ code:
#include "spdlog/spdlog.h"
Basic logging
Set up basic logging with different log levels and formats:
spdlog::set_pattern("[%H:%M:%S.%f] [%L] [thread %t] %v");
spdlog::info("Welcome to spdlog!");
spdlog::error("Some error message with arg: {}", 1);
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("{:<30}", "left aligned");
spdlog::set_level(spdlog::level::debug);
spdlog::debug("This message should be displayed..");
Installing using VCPKG
To use spdlog with static linking, download the static libraries for your desired platform using vcpkg:
vcpkg install spdlog
For a more in-depth understanding of spdlog features, refer to the official documentation.
Last updated
Was this helpful?