# HG changeset patch # User Kim Alvefur # Date 1513847747 -3600 # Node ID 867679b0fb032970bab2e57390cbdd55319e9a03 # Parent 384658c7a26a42e5a06abe2423ab1f7131b26104 mod_saslauth: Log which mechanisms are offered diff -r 384658c7a26a -r 867679b0fb03 plugins/mod_saslauth.lua --- a/plugins/mod_saslauth.lua Tue Dec 12 01:40:09 2017 +0100 +++ b/plugins/mod_saslauth.lua Thu Dec 21 10:15:47 2017 +0100 @@ -263,6 +263,7 @@ elseif not origin.secure and insecure_mechanisms:contains(mechanism) then log("debug", "Not offering mechanism %s on insecure connection", mechanism); else + log("debug", "Offering mechanism %s", mechanism); mechanisms:tag("mechanism"):text(mechanism):up(); end end