Logging
March 5, 2018 ยท View on GitHub
Application log component
You can get the logs of your application with
docker-compose logs
You may also add several params to the logs command
docker-compose logs -f --tail 100 php
Logging on console
It may also be required to get log output when running CLI commands.
By default messages of log levels error and warning are also shown on stderr://.
See also config/common.php
There is also a runtime/log/console.log, you can access it from a running containerwith
docker-compose exec php tail -n 100 runtime/logs/console.log
Or enter a container with make bash and run a command there
$ yii migrate
$ tail -n 100 runtime/logs/console.log
:information_source: Since this file is written into the container filesystem, it is different for the running application and a one-off
runcontainer. You can set a (host-)volume for/app/runtimefor development.
Audit module logs
Logs are also available via the backend module Audit, please visit /audit in your browser.