You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
274 B

  1. #pragma once
  2. #include <cpputils/logging/matcher/matcher.h>
  3. namespace utl {
  4. namespace logging {
  5. struct matcher_all : public matcher
  6. {
  7. bool match(const logger& logger) const override;
  8. bool match(const consumer& consumer) const override;
  9. };
  10. }
  11. }