diff --git a/.VERSION b/.VERSION index 0e1418a..f3aee88 100644 --- a/.VERSION +++ b/.VERSION @@ -1 +1 @@ -v9.1.2 +v9.2.0-beta.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 37d1389..af02215 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Changelog +### v9.2.0-beta.1 (coming soon) +* improve logging for failed database check ([#411](https://github.com/buanet/ioBroker.docker/issues/411)) + ### v9.1.2 (05.04.2024) * fix build process by updating npm to latest diff --git a/debian12/scripts/iobroker_startup.sh b/debian12/scripts/iobroker_startup.sh index 3cb51e2..dd09505 100644 --- a/debian12/scripts/iobroker_startup.sh +++ b/debian12/scripts/iobroker_startup.sh @@ -343,12 +343,10 @@ else echo "Done." echo " " else - errormsg=$(gosu iobroker iob uuid 2>&1 | sed 's/^/[DEBUG] /') echo "Failed." - if [[ "$debug" == "true" ]]; then - echo "[DEBUG] Error message: " - echo "$errormsg" - fi + errormsg=$(gosu iobroker iob uuid 2>&1 | sed 's/^/[ERROR] /') + echo "$errormsg" + echo " " echo "Please check your configuration and try again." echo "For more information see ioBroker Docker image docs (https://docs.buanet.de/iobroker-docker-image/docs)." stop_on_error