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-31suppress warning 4307 when including format-inline.h under msvc 2017gabime
2022-10-31clang formatgabime
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-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-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-13Replace iterator difference with std::distanceDaniil
2022-09-29Workaround deprecation warning on Clang with C++20offa
2022-09-03SPDLOG_NO_SOURCE_LOC implementation refinementNigel Stewart
2022-09-02SPDLOG_NO_SOURCE_LOC support for omitting __FILE__, __LINE__ and ↵Nigel Stewart
SPDLOG_FUNCTION information
2022-08-17Fix #2434Gabi Melman
2022-07-27Re-introduce redundant std::move at return for old GCC (before version 5) ↵Simon-Janos
inside an ifdef for e.g. CentOS 7
2022-07-21Explicitly casting level_enum to size_t.Shen-Ta Hsieh
See commit 2a4c34b8785137eba9da7eb4cbb28b4162218272
2022-07-17Expend support for any std::chrono::duration in `spdlog::flush_every`Lucas CHOLLET
This allows things like: spdlog::flush_every(std::chrono::minutes(10)); spdlog::flush_every(std::chrono::milliseconds(100));
2022-07-01Fix #2419 by documenting the set_pattern behaviourGabi Melman
2022-06-19Merge pull request #2399 from bergen4/v1.xGabi Melman
add overrun_counter reset function
2022-06-19Merge pull request #2386 from panzhongxian/v1.xGabi Melman
Romove the empty file if no log in first period in hourly logger
2022-06-09add overrun reset functionbergen
2022-06-09updatebergen
2022-06-02Remove redundant std::move at return (triggers -Wredundant-move in Gcc, at ↵Alexandre Pereira Nunes
least)
2022-05-24Romove the empty file if no log in first period in hourly loggerpanzhongxian
2022-05-20Remove try_lock from null_mutex.panzhongxian
2022-05-19Merge pull request #2384 from aengusjiang/v1.xGabi Melman
fix error: cannot bind lvalue to right reference
2022-05-19Add FMT_STRING to allow compilation with FMT_ENFORCE_COMPILE_STRINGJohn Armstrong
2022-05-19fix error: cannot bind lvale to right referenceAengus.Jiang
2022-05-13Update common.hGabi Melman
Init file event handlers to nullptr
2022-05-13Merge pull request #2372 from kslattery/v1.xGabi Melman
C++14 build fixes for older gcc #2333
2022-05-13Add default file-event_handler callbacks. #2374Kevin Slattery
2022-05-13Remove new macro, update example with correct way to specify fmt lib ↵Kevin Slattery
namespace when fmt_lib namespace alias cannot be used.
2022-05-11C++14 build fixes for older gcc #2333Kevin Slattery
2022-05-08clang-formatgabime
2022-05-08Use fmt::detail::vformat_to(buf, ...) since it is ~20ns faster than ↵gabime
fmt::vformat_to(std::back_inserter(buf),..)
2022-05-07Copy the value of need_localtime when cloning pattern_formatterJeeyong Um
2022-05-07Allow overriding need_localtime for custom formatterJeeyong Um
2022-05-06remove usage of forward argsTimo Lange
2022-05-06use __android_log_write or __android_log_buf_write based on template paramterTimo Lange
2022-04-27Fixed move in ringnuffer_sinkGabi Melman