[Consul Logger] Disable show log in consul

I run consul with docker-compose. When i start it, the container show list log info such as:
2023-10-22T03:30:10.819Z [INFO] connect.ca: initialized primary datacenter CA with provider: provider=consul
2023-10-22T03:30:10.819Z [INFO] agent.leader: started routine: routine=“intermediate cert renew watch”
2023-10-22T03:30:10.819Z [INFO] agent.leader: started routine: routine=“CA root pruning”
2023-10-22T03:30:10.820Z [INFO] agent.leader: started routine: routine=“CA root expiration metric”
2023-10-22T03:30:10.820Z [INFO] agent.leader: started routine: routine=“CA signing expiration metric”
2023-10-22T03:30:10.820Z [INFO] agent.leader: started routine: routine=“virtual IP version check”
2023-10-22T03:30:10.820Z [INFO] agent.leader: started routine: routine=“config entry controllers”
2023-10-22T03:30:10.821Z [INFO] agent.server: member joined, marking health alive: member=consul-server partition=default
2023-10-22T03:30:10.822Z [INFO] agent.leader: stopping routine: routine=“virtual IP version check”
2023-10-22T03:30:10.822Z [INFO] agent.leader: stopped routine: routine=“virtual IP version check”
2023-10-22T03:30:11.231Z [INFO] agent.server: federation state anti-entropy synced
2023-10-22T03:30:12.251Z [INFO] agent: Synced node info

I want to run quiet, don’t show everything with consul. Anyone can help me this issue.
Thanks for all support

Hi @duclinh.fetel,

Welcome to the HashiCorp Forums!

Could you please share more details about the Docker-Compose setup you are using and the commands you are running?

Generally, you can run docker-compose by putting the containers into the background (and mute the logs) by running docker-compose up -d.

If you have to reduce the log level, you can use the following configuration option and set the level to error.

I hope this helps!