diff --git a/packages/common/notification.js b/packages/common/notification.js
index 9df57b21dc5deec91508478f4f94ce7a3230ddd0..95481829410883f71fbf78c1a2b6f82bc63c15ad 100644
--- a/packages/common/notification.js
+++ b/packages/common/notification.js
@@ -25,7 +25,8 @@ function send(options) {
 
     // true means the event was not handled
     if (result) {
-        alert((options.summary !== undefined && options.summary !== "" ? options.summary + ": " : "") + options.body)
+        alert((options.summary !== undefined && options.summary !== "" ? options.summary + ": " : "") + options.body);
+        console.log("Use the web component vpu-notification to show fancy notifications.");
     }
 }