Files

28 lines
469 B
Markdown
Raw Permalink Normal View History

2022-04-02 19:59:46 -03:00
# Logs
2022-04-01 16:04:53 -03:00
```sh
make <command> <options>
```
2022-11-28 19:18:32 -03:00
## Options
2022-04-01 16:04:53 -03:00
2024-05-15 12:10:36 -04:00
* NAMESPACE=yourproject
2022-04-01 16:04:53 -03:00
* SERVICE=php
2026-04-08 10:17:51 -04:00
* VERSION=4.5
2022-04-01 16:04:53 -03:00
2024-05-15 12:10:36 -04:00
(*) For `SERVICE` you can use `php` and `database` respectively to get the logs for the PHP Apache and the MariaDB database.
2022-04-01 16:04:53 -03:00
## Access log
```sh
2024-05-15 12:10:36 -04:00
make log-access NAMESPACE=yourproject
make log-access NAMESPACE=yourproject SERVICE=database
2022-04-01 16:04:53 -03:00
```
## Error log
```sh
2024-05-15 12:10:36 -04:00
make log-error NAMESPACE=yourproject
make log-error NAMESPACE=yourproject SERVICE=database
2022-04-01 16:04:53 -03:00
```