Orbix Question:
How to increase the internal logging in Orbix configure?
Answer:
The itconfigure utility uses Log4J logging. This is configured in the properties file:
<ORBIX_INSTALL_DIR>asp6.3 emplatesetclog4jlog4j.properties.
To configure debug logging level, change the first line of the properties file from:
log4j.rootLogger=ERROR, A1
to
log4j.rootLogger=DEBUG, A1
The above change writes debug logging to the console. The logging output can be redirected to a file by adding the following lines to the log4j.properties file:
logDir = C:/temp
log4j.appender.A1.File=${logDir}/itconfigure.log
<ORBIX_INSTALL_DIR>asp6.3 emplatesetclog4jlog4j.properties.
To configure debug logging level, change the first line of the properties file from:
log4j.rootLogger=ERROR, A1
to
log4j.rootLogger=DEBUG, A1
The above change writes debug logging to the console. The logging output can be redirected to a file by adding the following lines to the log4j.properties file:
logDir = C:/temp
log4j.appender.A1.File=${logDir}/itconfigure.log
Previous Question | Next Question |
How to limit the connections to from a service? | How you can configure Orbix logging? |