diff --git a/apps/scpickfilter/descriptions/scpickfilter.xml b/apps/scpickfilter/descriptions/scpickfilter.xml index cfa2782c03e35bf80ca3c67fb9daaf1e8711996a..f85e07d7909fc28c3ab5da7c35198b52d814394b 100644 --- a/apps/scpickfilter/descriptions/scpickfilter.xml +++ b/apps/scpickfilter/descriptions/scpickfilter.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <seiscomp> <module name="scpickfilter" category="Processing"> - <description>Automatic relocator.</description> + <description>Remove active shots and electronic noise.</description> <configuration> <parameter name="pickBufferLength" type="double" unit="sec"> <description> diff --git a/apps/scpickfilter/main.cpp b/apps/scpickfilter/main.cpp index 5649e64f038f5cb2c0f8a8b48a1ebe3e6b50c649..24613bed2b0a7ab415078016da6d6c0b2bf57fcb 100644 --- a/apps/scpickfilter/main.cpp +++ b/apps/scpickfilter/main.cpp @@ -441,8 +441,11 @@ private: SEISCOMP_ERROR("%s: sending of pick failed", pick->publicID().c_str()); } }; - auto droppedCb = - [this](const deque<PickPtr> &picks) { /* nothing to do */ }; + auto droppedCb = [this](const deque<PickPtr> &picks) { + SEISCOMP_INFO("Dropped %zu picks: %s ~ %s", picks.size(), + picks.front()->time().value().iso().c_str(), + picks.back()->time().value().iso().c_str()); + }; processPicks(acceptedCb, droppedCb);