Skip to content

Commit

Permalink
Fixed logging in the startup scripts [#639]
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed Mar 9, 2021
1 parent 38ab03f commit be22ec3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion comixed-release/src/main/assembly/scripts/run.bat
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ SET OPTIONS=%OPTIONS% --logging.level.root=DEBUG
:skip_full_debug

IF "%LOGFILE%" == "" GOTO :skip_logfile
SET OPTIONS=%OPTIONS% --logging.file.name=%LOGFILE%
SET OPTIONS=%OPTIONS% --logging.file=%LOGFILE%
:skip_logfile

IF "%JDBCURL%" == "" GOTO skip_jdbc_url
Expand Down
2 changes: 1 addition & 1 deletion comixed-release/src/main/assembly/scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ if $FULL_DEBUG; then
fi

if [[ $LOGFILE ]]; then
JAROPTIONS="${JAROPTIONS} --logging.file.name=${LOGFILE}"
JAROPTIONS="${JAROPTIONS} --logging.file=${LOGFILE}"
fi

if [[ $JDBCURL ]]; then
Expand Down

0 comments on commit be22ec3

Please sign in to comment.