hello, all! new to airbyte, setting it up with doc...
# ask-community-for-troubleshooting
r
hello, all! new to airbyte, setting it up with docker-compose and have a few questions about logging. first, is there a way to split sever/scheduler logs into separate files by date, e.g.
airbyte_server/logs/logs_20220101.log
second, in the output for docker-compose up, i see log messages from a few different services: • airbyte-scheduler • airbyte-server • airbyte-temporal • airbyte-db • airbyte-worker • airbyte-webapp if i explore the airbyte_workspace volume though, i only see log files for scheduler and server. are the logs for the other services available in log files anywhere?
m
if you run
docker-compose up -d
will run the services in the backgrond and you can access the logs individually
docker logs airbyte-server > server.log
octavia thanks 1
r
thanks!