문제

For debugging the Installanywhere created applications, I use

export LAX_DEBUG=true

then I run my installer as

./setup.sh -DDEBUG=console

which redirects all the debug logs to console. Can I redirect this logs to any file so that I can mention as:

./setup.sh -DDEBUG=/tmp/a.txt

Thanks in advance...

도움이 되었습니까?

해결책

Installanywhere put all logs to -log.log file in installation directory chosen by user. To have additional entries in that file, you need to use CustomError class with appendMessage and appendError apis.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top