UnitTestClient_W

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/global/EDAnalyzer.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/Utilities/interface/StreamID.h"

namespace edmtest {
  class UnitTestClient_W : public edm::global::EDAnalyzer<> {
  public:
    explicit UnitTestClient_W(edm::ParameterSet const&) {}

    void analyze(edm::StreamID, edm::Event const&, edm::EventSetup const&) const override;
  };

  void UnitTestClient_W::analyze(edm::StreamID, edm::Event const&, edm::EventSetup const&) const {
    edm::LogWarning("cat_A") << "LogWarning was used to send this message";
    edm::LogInfo("cat_B") << "LogInfo was used to send this message";
    edm::edmmltest::LogWarningThatSuppressesLikeLogInfo("cat_C")
        << "LogWarningThatSuppressesLikeLogInfo was used to send this message";
  }

}  // namespace edmtest

using edmtest::UnitTestClient_W;
DEFINE_FWK_MODULE(UnitTestClient_W);