diff options
author | Matthew Wild <mwild1@gmail.com> | 2025-04-03 19:58:57 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2025-04-03 19:58:57 +0100 |
commit | db3735d9745f948268dbbe43c24caf3614f140c4 (patch) | |
tree | 094643491ab94cb166a5ab14f5da74ec9d8bc9df | |
parent | 07c3ce955c785449747a9248a88c161d7bbf9edc (diff) | |
download | prosody-db3735d9745f948268dbbe43c24caf3614f140c4.tar.gz prosody-db3735d9745f948268dbbe43c24caf3614f140c4.zip |
mod_admin_shell: Visual tweaks to the output of debug:cert_index()13.0.1
-rw-r--r-- | plugins/mod_admin_shell.lua | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua index 56bc3cc9..d6d082f3 100644 --- a/plugins/mod_admin_shell.lua +++ b/plugins/mod_admin_shell.lua @@ -2410,10 +2410,17 @@ function def_env.debug:cert_index(path) local sink = logger.add_simple_sink(function (source, level, message) if source == "certmanager" then - self.session.print(source, level, message); + if level == "debug" or level == "info" then + level = "II"; + elseif level == "warn" or level == "error" then + level = "EE"; + end + self.session.print(level..": "..message); end end); + print("II: Scanning "..path.."..."); + local index = {}; cm.index_certs(path, index) @@ -2436,7 +2443,7 @@ function def_env.debug:cert_index(path) { title = "Service", width = 5 }; }, self.session.width); print(row()); - + print(("-"):rep(self.session.width or 80)); for domain, certs in it.sorted_pairs(index) do for cert_file, services in it.sorted_pairs(certs) do for service in it.sorted_pairs(services) do |