From b26a3eca60cbbbd04c92cb1ea843f8509785954b Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Fri, 29 Jan 2021 17:33:46 +0000 Subject: [PATCH] prosody: Add record name to update check failure warning --- snikket-modules/mod_update_check/mod_update_check.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snikket-modules/mod_update_check/mod_update_check.lua b/snikket-modules/mod_update_check/mod_update_check.lua index 74252dd..5b73d36 100644 --- a/snikket-modules/mod_update_check/mod_update_check.lua +++ b/snikket-modules/mod_update_check/mod_update_check.lua @@ -24,7 +24,7 @@ function check_for_updates() module:log("debug", "Checking for updates on %s...", record_name); r:lookup(function (records) if not records or #records == 0 then - module:log("warn", "Update check failed"); + module:log("warn", "Update check failed for %s", record_name); return; end local result = {};