mod_pep: Only log when creating new pubsub services
authorKim Alvefur <zash@zash.se>
Tue, 09 Jul 2019 15:12:32 +0200
changeset 10070 216ae100c04a
parent 10069 b399dca1273c
child 10071 598befab492e
mod_pep: Only log when creating new pubsub services Once upon a time get_pep_service() would get called with random bare JIDs and remote hostnames, which is why it was logged this way. This seems to have been fixed, so it's not as useful anymore. It's still useful to know when it creates a new service object.
plugins/mod_pep.lua
--- a/plugins/mod_pep.lua	Sat Jun 29 19:19:38 2019 +0200
+++ b/plugins/mod_pep.lua	Tue Jul 09 15:12:32 2019 +0200
@@ -183,12 +183,12 @@
 end
 
 function get_pep_service(username)
-	module:log("debug", "get_pep_service(%q)", username);
 	local user_bare = jid_join(username, host);
 	local service = services[username];
 	if service then
 		return service;
 	end
+	module:log("debug", "Creating pubsub service for user %q", username);
 	service = pubsub.new({
 		pep_username = username;
 		node_defaults = {