From de2e2dd6566f42acbd4476528e0288276e72e3ea Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 17 Apr 2025 01:40:02 +0200 Subject: [PATCH] Updated the "run" task in the Makefile file to define the debug log level. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 00b5d6e..4541ed6 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ build: ## Builds the project locally. @swift build -c release run: build ## Runs the project locally. - @swift run doxy --archives-path "$(DOCC_ARCHIVES_FOLDER)" + @swift run doxy --archives-path "$(DOCC_ARCHIVES_FOLDER)" --log-level debug tests: ## Runs all the test cases of the project. @swift test --enable-swift-testing