Skip to content

Commit

Permalink
🔨 Add SONAR_LOG_LEVEL_WEB environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherlouet committed Jul 24, 2024
1 parent 02f6f5b commit c8cba33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .default.docker.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
MAVEN_BUILDER_VERSION=3-openjdk-17-slim
SONARQUBE_VERSION=10.6.0-community
POSTGRES_VERSION=12
SONAR_LOG_LEVEL_WEB=INFO
DOCKER_BUILDKIT=1
COMPOSE_DOCKER_CLI_BUILD=1
2 changes: 1 addition & 1 deletion toolbox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ function execute_unit_test() {
error "No function to execute" && return 1
fi
# If a function is passed as the first argument, we check that it exists
if [[ -n "${ARGS[0]}" ]] && ! [[ $(type -t "${ARGS[0]}") == function ]]; then
if ! [[ $(type -t "${ARGS[0]}") == function ]]; then
error "Function with name ${ARGS[0]} does not exist" && return 2
fi
# Initialize fixtures
Expand Down

0 comments on commit c8cba33

Please sign in to comment.