From fa81893d413b42652c239ff7a5c477e58191e579 Mon Sep 17 00:00:00 2001 From: Ikey Doherty Date: Sat, 21 Oct 2017 19:19:27 +0100 Subject: [PATCH] Be a little bit less verbose Signed-off-by: Ikey Doherty --- src/redirect/main.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/redirect/main.c b/src/redirect/main.c index e428ca4..da75904 100644 --- a/src/redirect/main.c +++ b/src/redirect/main.c @@ -88,7 +88,6 @@ __attribute__((destructor)) static void lsi_redirect_shutdown(void) return; } lsi_init = false; - fprintf(stderr, "Unloading lsi_redirect\n"); if (lsi_table.handles.libc) { dlclose(lsi_table.handles.libc); @@ -132,8 +131,6 @@ static void lsi_redirect_init_tables(void) /* Have the symbol correctly, copy it to make it usable */ memcpy(&lsi_table.open, &symbol_lookup, sizeof(lsi_table.open)); - fprintf(stderr, "lsi_redirect now loaded\n"); - /* We might not get an unload, so chain onto atexit */ atexit(lsi_redirect_shutdown); return;