[
https://issues.apache.org/jira/browse/MINIFICPP-365?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16329592#comment-16329592
]
ASF GitHub Bot commented on MINIFICPP-365:
------------------------------------------
Github user phrocker commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/244#discussion_r162196431
--- Diff: libminifi/src/ThreadedSchedulingAgent.cpp ---
@@ -104,10 +104,10 @@ void ThreadedSchedulingAgent::stop() {
void ThreadedSchedulingAgent::unschedule(std::shared_ptr<core::Processor>
processor) {
std::lock_guard<std::mutex> lock(mutex_);
- logger_->log_info("Shutting down threads for processor %s/%s",
processor->getName().c_str(), processor->getUUIDStr().c_str());
+ logger_->log_debug("Shutting down threads for processor %s/%s",
processor->getName().c_str(), processor->getUUIDStr().c_str());
if (processor->getScheduledState() != core::RUNNING) {
- logger_->log_info("Cannot unschedule threads for processor %s because
it is not running", processor->getName().c_str());
--- End diff --
Much prefer this!
> Refine log levels and messages
> ------------------------------
>
> Key: MINIFICPP-365
> URL: https://issues.apache.org/jira/browse/MINIFICPP-365
> Project: NiFi MiNiFi C++
> Issue Type: Improvement
> Reporter: Aldrin Piri
> Assignee: Aldrin Piri
> Priority: Major
> Fix For: 0.4.0
>
>
> minifi-app.log is verbose and includes a lot of information at an INFO level
> that is below the typical information a person might care to see. Some
> statements are likely extraneous and remnants of development, some should be
> dropped to a lower priority and others seem duplicative.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)