diff options
Diffstat (limited to 'src/instance.c')
-rw-r--r-- | src/instance.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/instance.c b/src/instance.c index d5e744a..b45d7bf 100644 --- a/src/instance.c +++ b/src/instance.c @@ -107,7 +107,7 @@ open_wrapper(SuilHost* host, dlerror(); void* lib = dlopen(path, RTLD_NOW); if (!lib) { - SUIL_ERRORF("Unable to open wrap module %s\n", path); + SUIL_ERRORF("Unable to open wrap module %s (%s)\n", path, dlerror()); return NULL; } |