Add inotify for information config
[platform/core/connectivity/stc-manager.git] / src / helper / helper-nfacct-rule.c
old mode 100644 (file)
new mode 100755 (executable)
index 3923daf..caf1174
@@ -142,9 +142,6 @@ static stc_error_e nfacct_send_new(nfacct_rule_s *counter)
        prepare_netlink_msg(req, NFNL_MSG_ACCT_NEW, NLM_F_CREATE | NLM_F_ACK);
        add_string_attr(req, counter->name, NFACCT_NAME);
 
-       if (STC_DEBUG_LOG)
-               STC_LOGD("counter name %s", counter->name); //LCOV_EXCL_LINE
-
        /* padding */
        add_uint64_attr(req, 0, NFACCT_PKTS);
        add_uint64_attr(req, 0, NFACCT_BYTES);
@@ -172,9 +169,6 @@ stc_error_e nfacct_send_del(nfacct_rule_s *counter)
                return STC_ERROR_OUT_OF_MEMORY; //LCOV_EXCL_LINE
        }
 
-       if (STC_DEBUG_LOG)
-               STC_LOGD("send remove request for %s", counter->name); //LCOV_EXCL_LINE
-
        prepare_netlink_msg(req, NFNL_MSG_ACCT_DEL, NLM_F_ACK);
        add_string_attr(req, counter->name, NFACCT_NAME);