diff --git a/src/intercept/main.c b/src/intercept/main.c index c097221..b8a01ae 100644 --- a/src/intercept/main.c +++ b/src/intercept/main.c @@ -296,7 +296,12 @@ static bool lsi_override_soname(unsigned int flag, const char *orig_name, const continue; } *soname = vendor_transmute_target[i]; - emit_replaced_name(orig_name, *soname); + + /* If LSI_DEBUG is set, spam it. */ + if (getenv("LSI_DEBUG")) { + emit_replaced_name(orig_name, *soname); + } + return true; }