services.matrix-synapse.settings.log_config
NixOS option
The file that holds the logging configuration.
type: absolute pathDefault
declared in: nixos/modules/services/matrix/synapse.nixView source on NixOS/nixpkgs →<rendered-html><p>Path to a yaml file generated from this Nix expression:</p>
<pre><code>{
disable_existing_loggers = false;
formatters = {
journal_fmt = {
format = "%(name)s: [%(request)s] %(message)s";
};
};
handlers = {
journal = {
SYSLOG_IDENTIFIER = "synapse";
class = "systemd.journal.JournalHandler";
formatter = "journal_fmt";
};
};
root = {
handlers = [
"journal"
];
level = "INFO";
};
version = 1;
}</code></pre>
</rendered-html>