From b2166a84251654ab097710129d164165c9b63d4d Mon Sep 17 00:00:00 2001 From: Tobias Buss Date: Mon, 9 Oct 2023 18:33:43 +0200 Subject: [PATCH] debugging messages --- node_helper/MMM-Wordpress.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/node_helper/MMM-Wordpress.js b/node_helper/MMM-Wordpress.js index 3f79238..741e21f 100644 --- a/node_helper/MMM-Wordpress.js +++ b/node_helper/MMM-Wordpress.js @@ -7,7 +7,9 @@ module.exports = NodeHelper.create({ }, socketNotificationReceived: function(notification, payload) { + console.log('Notification!'); if (notification === 'GET_POSTS') { + console.log('Notification: GET_POSTS'); const { url, numberOfPosts } = payload; const apiUrl = `${url}/wp-json/wp/v2/posts?per_page=${numberOfPosts}`;