summaryrefslogtreecommitdiffstats
path: root/VNFs/vCGNAPT/pipeline/pipeline_cgnapt.c
diff options
context:
space:
mode:
authorDeepak S <deepak.s@linux.intel.com>2017-08-14 12:14:16 +0530
committerDeepak S <deepak.s@linux.intel.com>2017-08-14 12:25:46 +0530
commiteaaf57ee5a877c4744afb899e46536e5a281cf7a (patch)
tree8a1dd00160276907a7ff3df6b32b0712ce9646e9 /VNFs/vCGNAPT/pipeline/pipeline_cgnapt.c
parent71f3317e3bab69a75ef814b187dc704198455bca (diff)
Moving printf under cgnapt_dbg_print
JIRA: SAMPLEVNF-71 Change-Id: Ibcd70008e1657eaa0b2f95aac319483490c290aa Signed-off-by: Deepak S <deepak.s@linux.intel.com>
Diffstat (limited to 'VNFs/vCGNAPT/pipeline/pipeline_cgnapt.c')
-rw-r--r--VNFs/vCGNAPT/pipeline/pipeline_cgnapt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/VNFs/vCGNAPT/pipeline/pipeline_cgnapt.c b/VNFs/vCGNAPT/pipeline/pipeline_cgnapt.c
index 239d34f9..fb0b95d1 100644
--- a/VNFs/vCGNAPT/pipeline/pipeline_cgnapt.c
+++ b/VNFs/vCGNAPT/pipeline/pipeline_cgnapt.c
@@ -475,7 +475,9 @@ app_pipeline_cgnapt_delete_entry(struct app_params *app,
/* Read response */
if (rsp->status || !rsp->key_found) {
app_msg_free(app, rsp);
- printf("Successfully deleted the entry\n");
+ #ifdef CGNAPT_DBG_PRNT
+ printf("Successfully deleted the entry\n");
+ #endif
return 0;
}