aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 67a99d0..0e14e42 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -258,7 +258,9 @@ impl ThreadedPlugins {
.spawn(move || {
if let Err(e) = plugin.execute_threaded(&client, &message) {
log_error(e);
- };
+ } else {
+ debug!("{} sent response from thread", plugin.name());
+ }
})
.context(ErrorKind::ThreadSpawn)
{