aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2024-11-08 10:28:29 +0000
committerMatthew Wild <mwild1@gmail.com>2024-11-08 10:28:29 +0000
commitcf3403f90c03b000be389a196148fa4fe33cc8f1 (patch)
treea74291e3bde12556327fcfa77becfb9b289354c0
parentf8c85b7c1e1343176004c52ea3e745053274639f (diff)
downloadprosody-cf3403f90c03b000be389a196148fa4fe33cc8f1.tar.gz
prosody-cf3403f90c03b000be389a196148fa4fe33cc8f1.zip
mod_bookmarks: Clarify log messages on failure to sync to modern PEP bookmarksorigin/0.120.12
Previously the error messages said that it failed to "publish" to PEP, but sometimes a sync involves removing items, which can be confusing. The log was also the same for both legacy PEP and private XML bookmarks. Having different log messages makes it easier to debug the cause and location of any sync errors.
-rw-r--r--plugins/mod_bookmarks.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_bookmarks.lua b/plugins/mod_bookmarks.lua
index 8fe3166a..73ea5d41 100644
--- a/plugins/mod_bookmarks.lua
+++ b/plugins/mod_bookmarks.lua
@@ -314,7 +314,7 @@ local function on_publish_legacy_pep(event)
local ok, err = publish_to_pep(session.full_jid, bookmarks, true);
if not ok then
- module:log("error", "Failed to publish to PEP bookmarks for %s@%s: %s", session.username, session.host, err);
+ module:log("error", "Failed to sync legacy bookmarks to PEP for %s@%s: %s", session.username, session.host, err);
session.send(st.error_reply(stanza, "cancel", "internal-server-error", "Failed to store bookmarks to PEP"));
return true;
end
@@ -340,7 +340,7 @@ local function on_publish_private_xml(event)
local ok, err = publish_to_pep(session.full_jid, bookmarks, true);
if not ok then
- module:log("error", "Failed to publish to PEP bookmarks for %s@%s: %s", session.username, session.host, err);
+ module:log("error", "Failed to sync private XML bookmarks to PEP for %s@%s: %s", session.username, session.host, err);
session.send(st.error_reply(stanza, "cancel", "internal-server-error", "Failed to store bookmarks to PEP"));
return true;
end