You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/tests
Sergei Zobov bd74991862 Add preserve_parent_name in async/logger::clone method
... in order to support logical hierarchy of loggers.

Imagine you have something like this architecture:

Application / Controller / First
                         / Second

And you want to have a log messages and understand from witch part it come,
after this changes you can do:

```
first_controller_logger = controller_logger.clone("first", true);
```
and you will get in log output something similar to:

```
[2014-10-31 23:46:59.678] [controller.first] [info] Some message
```

What is quite convenient.

Actually now you can do it by wrapping clone method, but with my changes it
won't require any user's code.

Thanks.
6 years ago
..
CMakeLists.txt Merge pull request #1418 from ban-dana/v1.x 6 years ago
catch.hpp Updated tests to catch v2.8.0 6 years ago
catch.license Updated tests to catch v2.8.0 6 years ago
includes.h Updated tests to catch v2.8.0 6 years ago
main.cpp Added unit tests (catch based) 10 years ago
meson.build Updated meson tests build 6 years ago
test_async.cpp Make tests support empty SPDLOG_EOL with new helper method require_message_count() 6 years ago
test_backtrace.cpp Update test_backtrace.cpp 6 years ago
test_create_dir.cpp update tests 6 years ago
test_daily_logger.cpp Make tests support empty SPDLOG_EOL with new helper method require_message_count() 6 years ago
test_dup_filter.cpp Fixed dup_filter test 6 years ago
test_errors.cpp Make tests support empty SPDLOG_EOL with new helper method require_message_count() 6 years ago
test_eventlog.cpp clang-format 6 years ago
test_file_helper.cpp clang-format 6 years ago
test_file_logging.cpp clang-format 6 years ago
test_fmt_helper.cpp Unified usage of fmt::memory_buffer across the codebase 6 years ago
test_macros.cpp Make tests support empty SPDLOG_EOL with new helper method require_message_count() 6 years ago
test_misc.cpp Add preserve_parent_name in async/logger::clone method 6 years ago
test_mpmc_q.cpp Update test_mpmc_q.cpp 6 years ago
test_pattern_formatter.cpp clang-format 6 years ago
test_registry.cpp Fix some spelling errors. 6 years ago
test_sink.h Unified usage of fmt::memory_buffer across the codebase 6 years ago
test_stdout_api.cpp clang-format 6 years ago
test_systemd.cpp Updated systemd sink and tests 6 years ago
utils.cpp clang-format 6 years ago
utils.h Merge pull request #1414 from BioDataAnalysis/bda_tests_support_empty_eol 6 years ago