GP-1607: Fixed the "ERROR StatusLogger Reconfiguration failed" message

that appeared in the log when Ghidra was launched with
support/ghidraDebug.
This commit is contained in:
Ryan Kurtz 2021-12-15 08:58:14 -05:00
parent a9decdf14e
commit 6b8813dbbc
2 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ if [ "${MODE}" = "debug" ] || [ "${MODE}" = "debug-suspend" ]; then
SUSPEND=y
fi
VMARG_LIST+=" -Dlog4j.configuration=\"${DEBUG_LOG4J}\""
VMARG_LIST+=" -Dlog4j.configurationFile=\"${DEBUG_LOG4J}\""
VMARG_LIST+=" -agentlib:jdwp=transport=dt_socket,server=y,suspend=${SUSPEND},address=${DEBUG_ADDRESS}"

View File

@ -151,7 +151,7 @@ if "%DEBUG%"=="y" (
set DEBUG_ADDRESS=127.0.0.1:18001
)
set VMARG_LIST=!VMARG_LIST! -Dlog4j.configuration="!DEBUG_LOG4J!"
set VMARG_LIST=!VMARG_LIST! -Dlog4j.configurationFile="!DEBUG_LOG4J!"
set VMARG_LIST=!VMARG_LIST! -agentlib:jdwp=transport=dt_socket,server=y,suspend=!SUSPEND!,address=!DEBUG_ADDRESS!
goto continue3
)