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-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
2022-09-29Workaround GCC 12 warningoffa
2022-09-26Merge pull request #2495 from panicgh/lowercase-windows-hGabi Melman
Use lower-case "windows.h" for case-sensitive file systems
2022-09-26Use lower-case "windows.h" for case-sensitive file systemsNicolas Benes
The "windows.h" in MinGW-W64 is lower-case. When cross-compiling for Windows on Linux with a case-sensitive file system, the upper-case "Windows.h" file is not found and compilation fails. Always use lower-case "windows.h" to fix cross-compilation.
2022-09-08Merge pull request #2475 from nigels-com/-fPICGabi Melman
cmake: set(CMAKE_POSITION_INDEPENDENT_CODE ON)
2022-09-08Merge pull request #2476 from nigels-com/SPDLOG_NO_SOURCE_LOCGabi Melman
SPDLOG_NO_SOURCE_LOC support for omitting __FILE__, __LINE__ etc
2022-09-03SPDLOG_NO_SOURCE_LOC implementation refinementNigel Stewart
2022-09-03cmake: SPDLOG_BUILD_PIC opt-in for CMAKE_POSITION_INDEPENDENT_CODENigel Stewart
2022-09-02SPDLOG_NO_SOURCE_LOC support for omitting __FILE__, __LINE__ and ↵Nigel Stewart
SPDLOG_FUNCTION information
2022-09-02cmake: set(CMAKE_POSITION_INDEPENDENT_CODE ON) for Linux static library purposesNigel Stewart
2022-08-17Fix #2434Gabi Melman
2022-08-12Merge pull request #2468 from LorenDB/patch-1Gabi Melman
Add openSUSE installation