From b5a31b2c6b1b9821189bbba0d251d344116a54a4 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Wed, 24 May 2023 12:12:20 -0600 Subject: [PATCH] Add note on debugging --- gitea/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gitea/README.md b/gitea/README.md index b025452..1b624ae 100644 --- a/gitea/README.md +++ b/gitea/README.md @@ -16,3 +16,11 @@ docker build -t cerc/act-runner:local . 1. Bring up the gitea cluster `docker compose up -d` 1. Run the script `./initialize-gitea.sh` 1. Note the access token printed, it will be needed to publish packages. + +#### Debugging +Gitea server logs can be seen via docker logs . +To enable more verbose log output add an environment variable definition like: +``` +GITEA__log__LEVEL=TRACE +``` +to the `server` definition in `docker-compose.yml` and re-start.