misc: adjusted debug logs when SKIP_SERVER_PROPERTIES

#1108
This commit is contained in:
Geoff Bourne 2021-11-04 21:49:03 -05:00
parent 0198c15b8c
commit f97cea4b06

View File

@ -217,9 +217,9 @@ if isTrue "${ENABLE_AUTOPAUSE}"; then
fi fi
fi fi
if isDebugging; then if isDebugging && [ -f "${SERVER_PROPERTIES}" ]; then
log "DEBUG Dumping server.properties" log "DEBUG Dumping server.properties"
cat "${SERVER_PROPERTIES}" cat "${SERVER_PROPERTIES}"
fi fi
exec ${SCRIPTS:-/}start-setupEnvVariables $@ exec "${SCRIPTS:-/}start-setupEnvVariables" "$@"