Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-13Support compile-time format string checking with std::format (#2544)HEADv1.xCharles Milette
* Support compile-time format string checking with std::format * Fix pre-VS 17.5 compilation * Fix compilation without wchar_t support * What am I doing * Bring back fmt optimization * Move to_string_view to common.h * Fix SPDLOG_CONSTEXPR_FUNC emitting duplicate symbol errors when building in C++11 * Also add inline on VS 2013 * Appender doesn't work on wide strings
2022-11-12Update #include to deprecated fmt header (#2545)Romain Pokrzywka
The <fmt/locale.h> header has been marked as deprecated for a while and has finally been removed in fmt v0.9.0: https://github.com/fmtlib/fmt/commit/5c7d315ded7bdb6cc5bd65daef091eefe Replace with <fmt/format.h> instead, as recommended.
2022-11-08Fix undefined macro `FMT_STRING` in benchmark when using `std::format` (#2540)Sprite
2022-11-08Bundle fmt 9.1.0's std.h, and provide a header to include either it or the ↵Eli Boyarski
external fmt's version (#2539)
2022-11-03Version 1.11.0v1.11.0Gabi Melman
2022-11-01Update ci.ymlGabi Melman
2022-11-01Update ci.ymlGabi Melman
2022-11-01chrono.h: Remove warning suppressionGabi Melman
Not needed since fmt 9.x
2022-11-01Check IsDebuggerPresent in msvc_sink before doing work. Fix #2408gabime
2022-11-01Try again fixing fmt::vformat_to when SPDLOG_WCHAR_TO_UTF8_SUPPORT is definedgabime
2022-11-01Fixed msvc warning C4800 in win_eventlog_sinkgabime
2022-11-01Fixed syntax error from prev commitgabime
2022-11-01Fix #2431gabime
2022-10-31Fix fmt::vformat_to when SPDLOG_WCHAR_TO_UTF8_SUPPORT is definedgabime
2022-10-31Rvert suppressing msvc2017 warnings and fix ci insteadgabime
2022-10-31Replace fmt::detail::vformat_to(buf,..) with ↵gabime
fmt::vformat_to(fmt::appender(buf)
2022-10-31Replace fmt::detail::vformat_to(buf,..) with ↵gabime
fmt::vformat_to(fmt::appender(buf)
2022-10-31enable the ostream formatting for backward compatibility with fmt 8.xgabime
2022-10-31updated readmegabime
2022-10-31suppress warning 4307 when including format-inline.h under msvc 2017gabime
2022-10-31Update user defined type examplegabime
2022-10-31clang formatgabime
2022-10-31Merge branch 'v1.x' of https://github.com/gabime/spdlog into v1.xgabime
2022-10-31suppress "integral constant overflow" warning under msvc 2017gabime
2022-10-31Update appveyor.ymlGabi Melman
2022-10-31Update appveyor.ymlGabi Melman
Added fatal warnings option to appveyor
2022-10-31Renamed bench namegabime
2022-10-31Bump bundled fmtlib to version 1.9.1gabime
2022-10-20Use 'SPDLOG_FMT_RUNTIME' to fix compilation error throwed MSVC and fmt 9.1.x ↵刘耘呈
(#2517) * Use 'SPDLOG_FMT_RUNTIME' to fix compilation error throwed MSVC and fmt 9.1.x * Fix #2512
2022-10-19Merge pull request #2519 from sandorzm/v1.xGabi Melman
Mongo sink improvements
2022-10-19Change mongocxx::exception handler to std::exceptionSandor Magyar
2022-10-19clang-format mongo_sink.hSandor Magyar
2022-10-19Improve arg passing and exceptions in mongo_sinkSandor Magyar
2022-10-19Remove pointless try block in mongo_sinkSandor Magyar
2022-10-19Adjust MongoCXX instance handling in mongo_sinkSandor Magyar
Changes suggested by @gabime on #2519
2022-10-18Merge pull request #2515 from puneetmatharu/v1.xGabi Melman
Export targets file to build directory at configure time
2022-10-18Don't force Mongo sink to own MongoCXX instanceSandor Magyar
There can only be one instance in the whole program, so programs that use the Mongo sink and also separately use MongoCXX may have problems if the Mongo sink owns the instance. MongoCXX recommends that the main application manage its own instance so configuration parameters can be passed to the constructor: http://mongocxx.org/api/current/classmongocxx_1_1instance.html However, this commit is not a breaking change. If no instance has been created at construction time, the Mongo sink will still create and own the instance.
2022-10-17Add numerical level to Mongo sink for easier queriesSandor Magyar
Filtering to a certain log level or above, a useful operation, can now be done with an integer comparison as opposed to comparing to a list of strings in the database query.
2022-10-17Catch exception by reference to fix -Wcatch-value warningSandor Magyar
2022-10-17Export targets to build directory so that it can be found at configure time.Puneet Matharu
2022-10-15Merge pull request #2509 from kin4stat/v1.xGabi Melman
Replace iterator difference with std::distance(revert #2030)
2022-10-13Replace iterator difference with std::distanceDaniil
2022-10-03Merge pull request #2500 from offa/ghactions_ciGabi Melman
Migrate to Github Actions CI
2022-10-03Replace Travis CI Badge with Github Actionsoffa
2022-10-01Remove .travis.ymloffa
2022-10-01Migrate to Github Actions CIoffa
2022-09-30Merge pull request #2498 from offa/gcc12_workaroundGabi Melman
Workaround GCC 12 warning
2022-09-30Use pragams instead of compile optionsoffa
2022-09-30Merge pull request #2499 from offa/clang_cpp20_workaroundGabi Melman
Workaround deprecation warning on Clang with C++20
2022-09-29Workaround deprecation warning on Clang with C++20offa