Hi All,
I've been trying to work out how to turn down the logging level in OE Pas and so far with no luck - any help greatly received! Attached is the kind of output we are currently getting. I just don't seem able to stop the DEBUG messages. We are on OpenEdge 11.5.1 - thanks in advance!
Thanks,
Mark
Hi All,
Anyone know why we can't remove DEBUG within PAS from our console window?
Thanks,
Mark
Flag this post as spam/abuse.
Hi All,
I've been trying to work out how to turn down the logging level in OE Pas and so far with no luck - any help greatly received! Attached is the kind of output we are currently getting. I just don't seem able to stop the DEBUG messages. We are on OpenEdge 11.5.1 - thanks in advance!
Thanks,
Mark
Flag this post as spam/abuse.
Hi Peter,
All of the logging within the logging.xml files are commented out. We've been playing with various settings all afternoon and still don't seem to be able to get rid of the excessive debug logging.
Thanks,
Mark
Hi,
We are still having trouble tracking down where this debug setting is so we can stop these debug messages being output to the console. We are starting the Pacific Appserver using the command tcman start.
This are the files and settings we've tried looking at without luck:
WRK\oepas1\conf\openedge.properties
[AppServer.SessMgr]
agentLogEntryTypes=
agentLogFile=
agentLoggingLevel=1
agentLogThreshold=0
[AppServer.SessMgr.oepas1]
agentLogEntryTypes=ASPlumbing,DB.Connects
agentLogFile=D:\OpenEdge\WRK\oepas1/logs/oepas1.agent.log
agentLoggingLevel=1
agentLogThreshold=0
brkrDebuggerEnabled=0
WRK\oepas1\conf\appserver.properties
No reference to debugging/logging
WRK\oepas1\conf\catalina.properties
Only some references to log4j and commons-logging jar files
WRK\oepas1\conf\server.xml
No reference to debugging/logging
WRK\oepas1\conf\server-debug.xml
Only one reference to debugging
<!-- feature:begin:AccessLog:on -->
<Valve className="org.apache.catalina.valves.AccessLogValve"
directory="${catalina.base}/logs"
prefix="localhost_access_log."
suffix=".txt"
pattern="debug: %h %l %u %t "%r" %s %b %D" />
<!-- feature:end:AccessLog:on -->
WRK\oepas1\conf\logging.properties
All entries have FileHandler.level set to INFO.
WRK\oepas1\conf\web.xml
only reference to debugging I think is disabled
<servlet>
<servlet-name>default</servlet-name>
<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
<init-param>
<param-name>debug</param-name>
<param-value>0</param-value>
</init-param>
<init-param>
<param-name>listings</param-name>
<param-value>false</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
WRK\oepas1\webapps\ROOT\WEB-INF\logging.xml
All logger tags are commented
WRK\oepas1\webapps\oemanager\WEB-INF\logging.xml
No logger tags
WRK\oepas1\webapps\hrpo\WEB-INF\logging.xml
All logger tags are commented
Are there any other configuration files we can look to turn the debugging level down?
Thanks
Hi All,
Anyone know why we can't remove DEBUG within PAS from our console window?
Thanks,
Mark
Hi All,
Anyone know why we can't remove DEBUG within PAS from our console window?
Thanks,
Mark
Flag this post as spam/abuse.
Hi Navneet,
Thanks for this, you've solved our problem. We were missing the context.xml file inside META-INF (everything else was fine).
I thought we did use tcman deploy to deploy the application but I can't be 100% sure. Will definitely make sure it's the way we deploy in the future.
Once again thanks for this, and we now have a significant performance increase too!