From 6e2d3703d5111191d610c49276a5ece663785838 Mon Sep 17 00:00:00 2001 From: rdbo Date: Wed, 17 Apr 2024 08:53:47 -0300 Subject: [PATCH] removed logs --- src/linux/module.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/linux/module.c b/src/linux/module.c index d267cb97..92fa77ce 100644 --- a/src/linux/module.c +++ b/src/linux/module.c @@ -250,13 +250,10 @@ LM_UnloadModule(const lm_module_t *module) size_t modpath_len; size_t len; - printf("module: %p\n", (void *)module); if (!module) return LM_FALSE; handle = dlopen(NULL, 0); /* Get process first handle */ - printf("handle: %p\n", handle); - fflush(stdout); if (!handle) return LM_FALSE;