diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index afb38d9..349cb6b 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -10,17 +10,6 @@ jobs: - name: clang-format run: | docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source ./include - check-build-with-logging: - runs-on: ubuntu-22.04 - needs: clang-format - steps: - - uses: actions/checkout@v2 - - name: build binary with logging - run: | - docker build . -t builder - docker run --rm -v ${PWD}:/project builder make DEBUG=VERBOSE - docker run --rm -v ${PWD}:/project builder make clean - docker run --rm -v ${PWD}:/project builder make DEBUG=1 build-binary: runs-on: ubuntu-22.04 needs: clang-format diff --git a/README.md b/README.md index d0b737f..c3d0f60 100644 --- a/README.md +++ b/README.md @@ -25,16 +25,8 @@ Via the plugin config menu (press L, DPAD Down and Minus on the gamepad) you can See the [ftpd repository](https://github.com/mtheall/ftpd?tab=readme-ov-file#supported-commands) for a list of all supported commands. -## Buildflags - ### Logging -Building via `make` only logs errors (via OSReport). To enable logging via the [LoggingModule](https://github.com/wiiu-env/LoggingModule) set `DEBUG` to `1` or `VERBOSE`. - -`make` Logs errors only (via OSReport). -`make DEBUG=1` Enables information and error logging via [LoggingModule](https://github.com/wiiu-env/LoggingModule). -`make DEBUG=VERBOSE` Enables verbose information and error logging via [LoggingModule](https://github.com/wiiu-env/LoggingModule). - -If the [LoggingModule](https://github.com/wiiu-env/LoggingModule) is not present, it'll fallback to UDP (Port 4405) and [CafeOS](https://github.com/wiiu-env/USBSerialLoggingModule) logging. +Logs will only appear in the system log (OSReport). ## Building using the Dockerfile