
Tag archives for logging
Hello,
During the implementation of a custom method in Documentum (via Composer), we have the possibility to generate a specific log (dm_document stored in DCTM) for each method's execution via a PrintWriter object provided by Documentum DFC:
During the execution or calling of method, it is necessary to precise the save_results=true parameter :
The execution of a method returns result (or/and result_doc_id) field, ...more»
Hello,
A post concerning the Documentum logs on filesystem (server side) and in Documentum Administrator (DA):
File System
Docbase log:
\dba\log\mydemat.log
\dba\log\globalr.log
Docbroker log:
\dba\log\Docbroker.Docbroker.log
Java Method Server (JMS) log:
\jbossX.Y.Z\server\DctmServer_MethodServer\log\server.log
\jbossX.Y.Z\server\DctmServer_MethodServer\log\boot.log
\jbossX.Y.Z\server\DctmServer_MethodServer\logs\ServerApps.log
\jbossX.Y.Z\server\DctmServer_MethodServer\logs\ServerApps_trace.log
These logging files are configured in the log4j.properties in \jbossX.Y.Z\server\DctmServer_MethodServer\deployments\ServerApps.ear\APP-INF\classes.
Log of JMS Starting:
\jbossX.Y.Z\server\serviceConfig\MethodServer\DmMethodServerService.log
DFC logging On Content Server
\product/7.1/dfc_shared/logs/log4j.log
\product/7.1/dfc_shared/logs/trace.log
DFC logging and tracing is controlled via the log4j.properties file located in \product\X.Y\dfc_shared\config\ on the Content Server (ex: /opt/dctm/product/7.1/dfc_shared/config/).
Log of docbase's users:
\dba\log\\
Log of ...more»
Hi,
In this article, I would present the famous framework of logging Log4J which is used in the most projects. So, our article will be composed of several sections:
1) Presentation of logging and Log4J,
2) The components of Log4J,
3) Apache Commons Logging and SLF4J
1) Presentation of logging and Log4J
The best practices of development recommend the use of a logging system instead of ...more»
