add a console confirmation message to the debug-bootstrap that shows when the trigger has been successfully fired
diff --git a/client/lib/debug-bootstrap.js b/client/lib/debug-bootstrap.js
index 134e3eb..37303be 100644
--- a/client/lib/debug-bootstrap.js
+++ b/client/lib/debug-bootstrap.js
@@ -24,6 +24,8 @@
 	ow.triggers.invoke({
 	    triggerName: triggerName,
 	    params: result
+	}).then(function() {
+	    console.log('Debug session complete');
 	});
     };
 };