./devel/spdlog, Fast C++ logging library

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 1.13.0, Package name: spdlog-1.13.0, Maintainer: ryoon

Very fast, header-only/compiled, C++ logging library.


Required to run:
[lang/python37]

Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 257.815 KB

Version history: (Expand)


CVS history: (Expand)


   2024-01-12 12:48:47 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
spdlog: updated to 1.13.0

Version 1.13.0

Enhancements

Qt Sink: Allow for darker colors for light backgrounds
Set CMAKE_BUILD_TYPE only for single-config generators
Provide spdlog_header_only in build directory export
Add SPDLOG_TO_VERSION to compare spdlog version
Support async_overflow_policy::discard_new
Make syslog_sink.h's syslog_prio_from_level protected
Fix OS availability check of pthread_threadid_np for iOS
Add .git-blame-ignore-revs to ignore clang-format related commits
Match SPDLOG_CONSTEXPR_FUNC to FMT_CONSTEXPR

Bug Fixes

Check fd_ is not nullptr in file_helper to prevent possible crash if disk is full
Fix encoding issue in qt_sinks
Fix wrong thread_id (TID) in systemd_sink.h
Update example.cpp to fix the vector issue in bin_example
Fix MSVC compile flag for no exceptions
Fix bug in circular_q::size()
Fix link to fmt license file

Maintenance

Added and updated various tests for circular_q.
Removed obsolete part from CMake configuration files
Removed policy_max from cmake_minimum_required(..).
Updated clang-format to google style and updated various formatting scripts.
Bumped to catch2 v3.5.0.
   2023-08-14 07:25:36 by Thomas Klausner | Files touched by this commit (1247)
Log message:
*: recursive bump for Python 3.11 as new default
   2023-07-22 14:15:22 by Nia Alarie | Files touched by this commit (2)
Log message:
spdlog: Set USE_CXX_FEATURES.

Do not set USE_LANGUAGES to c++11, it sets it itself.
   2023-07-18 06:59:01 by Adam Ciarcinski | Files touched by this commit (5) | Package updated
Log message:
spdlog: updated to 1.12.0

1.12.0

Support for external fmtlib versions 10.x
Better support for std::format
Added new qt color sink. Logs to QTextEdit widget with some nice colors.
Update #include to a deprecated fmt header
Fixes and impovements to dup_filter_sink
Fix unnecessary empty backtrace begin/end logs
Fixed variable name in msvc_sink
Add system includes (SPDLOG_SYSTEM_INCLUDES) cmake option
Improve dequeue of the async queue
Fix tcp_client sink for FreeBSD
Support linux/musl libc
Support newlib C library configurations without tm_gmtoff field
Fix type of event id in win_eventlog_sink
Fix -Wshadow warnings in spdlog::sinks::dist_sink
Spelling corrections
Add sync() function to file_helper
Add a trivial callback_sink
Fix unexpected delimiter at start of line in to_hex formatter
Fix MinGW build issue on example
Add optional TID definition to the systemd sink
Added apply_logger_env_levels()
Support utf8 in msvc_sink
Better handling of utf to wchar (66407f5).
Use catch v3 for tests
New kafka sink
Fix os namespace in systemd_sink.h
Enable systemd_sink tests in linux pipeline
Fix stdout_sink_base::log's fflush() behaviour inconsistency
Fix for missing pthread_threadid_np in macOS < 10.6 and PowerPC
Fix ringbuffer_sink moving warning
Update INSTALL doc
Fix warning in qt_sinks.h
Remove IPv4 limitation from tcp_client
Fix android sink when message is not loggable
   2023-05-17 10:20:06 by Thomas Klausner | Files touched by this commit (2)
Log message:
spdlog: fix build with latest fmtlib using upstream patch
   2023-05-16 23:20:53 by Thomas Klausner | Files touched by this commit (38)
Log message:
*: PKGREVISION bump for fmtlib shlib major bump
   2023-01-24 19:36:36 by Thomas Klausner | Files touched by this commit (103)
Log message:
*: convert to cmake/build.mk
   2022-11-28 15:38:54 by Nia Alarie | Files touched by this commit (2)
Log message:
spdlog: Reduce size of hammer to bring in external fmtlib.

Some dependent packages link fine without fmtlib (eg. libixion)
and fmtlib ending up in their libtool file is causing problems
of its own.

This way only packages that are including those relevant fmtlib
symbols need to be explicitly linked against fmtlib.