mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.startup: Teach prosodyctl to be completely --silent
This commit is contained in:
parent
14f31180b5
commit
f30bbd6dcf
3 changed files with 9 additions and 0 deletions
|
@ -141,6 +141,9 @@ Increase log level to show debug messages.
|
|||
.TP
|
||||
\f[B]\f[CB]--quiet\f[B]\f[R]
|
||||
Reduce log level to only show errors.
|
||||
.TP
|
||||
\f[B]\f[CB]--silent\f[B]\f[R]
|
||||
Disable logging completely, leaving only command output.
|
||||
.SH FILES
|
||||
.TP
|
||||
\f[B]\f[CB]/etc/prosody/prosody.cfg.lua\f[B]\f[R]
|
||||
|
|
|
@ -143,6 +143,9 @@ details of how these commands work you should see ejabberdctl(8).
|
|||
`--quiet`
|
||||
: Reduce log level to only show errors.
|
||||
|
||||
`--silent`
|
||||
: Disable logging completely, leaving only command output.
|
||||
|
||||
# FILES
|
||||
|
||||
`/etc/prosody/prosody.cfg.lua`
|
||||
|
|
|
@ -475,6 +475,9 @@ function startup.force_console_logging()
|
|||
log_level = "debug";
|
||||
elseif prosody.opts.quiet then
|
||||
log_level = "error";
|
||||
elseif prosody.opts.silent then
|
||||
config.set("*", "log", {}); -- ssssshush!
|
||||
return
|
||||
end
|
||||
end
|
||||
config.set("*", "log", { { levels = { min = log_level or "info" }, to = "console" } });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue