Where are DOORS logs located?
I would like to monitor the disk space used by DOORS logs.
Where are DOORS logs located?
|
Accepted answer
There are server logs and client logs.
--- Server logs ---
Login history log (enabled by default) is located at
DOORS_SERVER_HOME\data\v6data\logs\login_history.txt
Server transaction log (not enabled by default) can be started by starting DOORS server demon with the following syntax:
doorsd -debug -loglevel 6 -logfile c:\Program Files\DOORS\9.6\logs\server_log.txt
--- Client logs ---
Client logs (not enabled by default) can be enabled with DXL.
To start logging, run the following DXL codes:
string logfileLocation = "c:\temp\doorsclientlog.txt"
int logLevel = 6
startLogging_(logfileLocation, logLevel)
To stop logging, run the following DXL codes:
stopLogging_()
--- More information ---
For more information about DOORS logs, please see the following
documentation:
Andrew Clement selected this answer as the correct answer
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.