diff options
author | Andrew Yourtchenko <ayourtch@gmail.com> | 2017-09-22 00:40:48 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2017-09-22 10:49:31 +0000 |
commit | 9969a3274bfdbaa62b3528887641c5ea36a8509f (patch) | |
tree | f82bf121329ab702ff0e06a80335bf3adf671244 | |
parent | c125eccc10db9c0b9c5d161d3ad20b4fc8c69b26 (diff) |
acl-plugin: remove the clib_warning "ACL enabling..."
It was useful for debugging once upon a time...
but time to say goodbye to it...
Also remove the warning printed when sending ACL details.
Change-Id: I43b2537e176556831eb7ff34b25c9068aa05ee27
Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
-rw-r--r-- | src/plugins/acl/acl.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/plugins/acl/acl.c b/src/plugins/acl/acl.c index 04a66864503..41616975de8 100644 --- a/src/plugins/acl/acl.c +++ b/src/plugins/acl/acl.c @@ -563,9 +563,6 @@ acl_hook_l2_input_classify (acl_main_t * am, u32 sw_if_index) rv = vnet_l2_input_classify_set_tables (sw_if_index, ip4_table_index, ip6_table_index, ~0); - clib_warning - ("ACL enabling on interface sw_if_index %d, setting tables to the following: ip4: %d ip6: %d\n", - sw_if_index, ip4_table_index, ip6_table_index); if (rv) { acl_classify_add_del_table_tiny (cm, ip6_5tuple_mask, @@ -1499,7 +1496,6 @@ send_acl_details (acl_main_t * am, unix_shared_memory_queue_t * q, copy_acl_rule_to_api_rule (&rules[i], &acl->rules[i]); } - clib_warning("Sending acl details for ACL index %d", ntohl(mp->acl_index)); clib_mem_set_heap (oldheap); vl_msg_api_send_shmem (q, (u8 *) & mp); } |