You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ts...@apache.org on 2020/06/07 13:31:10 UTC

[logging-log4cxx] branch master updated (400f15c -> 8f94276)

This is an automated email from the ASF dual-hosted git repository.

tschoening pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git.


    from 400f15c  Static linking support for non windows systems (#23)
     add b9ea654  Implement mapfilter Build unit test for mapfilter
     add 147c94c  Update to apply astyle Remove C++11 initializer and emplace.
     add b26712e  replace using with scoped typedef as in propertyfilter
     add 85a47e8  Support non-C++11-compilers like legacy Borland bcc32.
     add e6c817e  Implementation of map-based filter.
     add aa05380  Example usage.
     new 8f94276  Implementation of a MapFilter.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/changes/changes.xml                            |   1 +
 src/main/cpp/CMakeLists.txt                        |   1 +
 src/main/cpp/Makefile.am                           |   1 +
 .../cpp/{stringmatchfilter.cpp => mapfilter.cpp}   |  66 +++++----
 src/main/include/log4cxx/filter/mapfilter.h        |  82 ++++++++++-
 src/test/cpp/Makefile.am                           |   1 +
 src/test/cpp/filter/CMakeLists.txt                 |   1 +
 src/test/cpp/filter/mapfiltertest.cpp              | 163 +++++++++++++++++++++
 8 files changed, 283 insertions(+), 33 deletions(-)
 copy src/main/cpp/{stringmatchfilter.cpp => mapfilter.cpp} (54%)
 create mode 100644 src/test/cpp/filter/mapfiltertest.cpp


[logging-log4cxx] 01/01: Implementation of a MapFilter.

Posted by ts...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tschoening pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git

commit 8f94276bb697e42b2b2eed0b7e8a194e55555f83
Merge: 400f15c aa05380
Author: Thorsten Schöning <62...@users.noreply.github.com>
AuthorDate: Sun Jun 7 15:31:02 2020 +0200

    Implementation of a MapFilter.
    
    https://github.com/apache/logging-log4cxx/pull/24
    https://github.com/apache/logging-log4cxx/pull/25

 src/changes/changes.xml                     |   1 +
 src/main/cpp/CMakeLists.txt                 |   1 +
 src/main/cpp/Makefile.am                    |   1 +
 src/main/cpp/mapfilter.cpp                  |  91 ++++++++++++++++
 src/main/include/log4cxx/filter/mapfilter.h |  82 +++++++++++++-
 src/test/cpp/Makefile.am                    |   1 +
 src/test/cpp/filter/CMakeLists.txt          |   1 +
 src/test/cpp/filter/mapfiltertest.cpp       | 163 ++++++++++++++++++++++++++++
 8 files changed, 336 insertions(+), 5 deletions(-)