%T.%f format prints 14:48:15.362823 for example.
It seemed be pretty, if it prints as 14:48:15.362'823 or 14:48:15.362,823 - with some delimiter between milliseconds and microseconds part.
Could you support that feature ?
Hi,
first of all: Many thanks for this Very nice piece of software.
Unfortunately I seem unable to use it properly :(
I have a rather large project using spdlog for all its printing needs.
I use cmake for building and I pull in spdlog using:
include(FetchContent)
FetchContent_Declare(
sp...
Hi there!
I've been using spdlog for a while now and absolutely love it!
One of the things that I would love to see added, however, would be some kind of "span" or "scoped log" support.
So a simple class that can be instantiated, which will log something at construction and on destruction.
It's simp...
Use Meson wrapdb packages to download spdlog
Couple hours ago got into problems:
`|Downloading spdlog source from https://github.com/gabime/spdlog/archive/v1.11.0.tar.gz
Downloading file of unknown size.
|A fallback URL could be specified using source_fallback_url key in the wrap file
subprojects/vx...
spdlog 1.11.0 fail to build with NDK r16b
Compiler output
In file included from /data/conan/eslog/3.1.34/screenshare/snapshot/build/ce2b56950953d6f017405bd02f64b8f31dae9cb6/src/eslog/sink/android/sink_impl.cpp:12:
/data/conan/spdlog/1.11.0///package/5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9/includ...
In current codebase, dynamic_cast will be used in fmt :
spdlog/include/spdlog/fmt/bundled/ostream.h
Line 82
in
8a0b223
if (auto* buf = dynamic_cast<std::filebuf*>(os.rdbuf()))
The info log "Start Logging......" only can show on the first time of AllocConsole() and following logging isn't show on the console window. Here is my code.
VOID LoggingConsoleToggleSwitch()
{
if (enableLogging)
{
AllocConsole();
spdlog::default_logger()->flush();
spdlog::info("Start Log...
Is there a way to combine all registered loggers into one backtrace, or do I have to call each logger backtrace manually? If the latter is the case, could this perhaps be something to implement?
Hi,
I have seen spdlog crashes sometimes due to some exceptions. For example below
terminate called after throwing an instance of 'spdlog::spdlog_ex'
what: async log: thread log does not exist anymore.
I understand it crashed due to exit call from code. I dont want spdlog to crashes but ignore, and...
Hi,
I have a root log: Welcome
I'd like to dispatch this root log along with different log files like a.log, b.log, c.log. But, the formatting of this root log will be different than other daily logs
Root log at files won't have any file and line information as other logs have
Root log's logger nam...