Vault operational logs are stored in two locations.

Hello,
I have configured the Vault operational logs to be stored in a specific path, this is the logging configuration from config.hcl:


log_level = "info"

log_format = "json"

log_file = "/var/log/vault/vault.log"

log_rotate_bytes = "200000000"

log_rotate_duration = "168h"

log_rotate_max_files = "6" 

But despite setting a specific path for the log_file option, these logs also appear in /var/log/syslog.

What should I do to disable the storage of the operational logs in the syslog file? I only want to store the logs in one place, specified in config.hcl.