Where is the weaviate log file location

Hi Team,

i have enabled the LOG_LEVEL: ‘debug’ and restarted my docker image.

I am trying to verify the logs it created, but not able to get the location of log file.

Can you please help on it.

Hi!

Weaviate will log at stdout.

This means that you can check the log running, for example:

docker compose logs -f --tail 10 weaviate

if you know the id of your container (docker ps will show), you can discover where the .json file will be in your host system by issuing:

docker inspect --format='{{.LogPath}}' <id-of-your-weaviate-container>

Let me know if that helps!

Thanks!

Hello,

Thank you very much … it helped to identify the log location.

Thanks again…!!