Es gibt zwei Möglichkeiten, DOORS-Client-seitige Protokolle zu aktivieren:
1. Sie führen einen DXL-Befehl von Ihrem DOORS-Client aus, um die client-seitige Protokollierung zu aktivieren.
Führen Sie den folgenden DXL-Befehl vom Rational DOORS-Client aus, bevor Sie den Vorgang starten, den Sie debuggen möchten:
string logfileLocation = "c:\\temp\\doorsclientlog.txt"
int logLevel = 6
startLogging_(logfileLocation, logLevel)
2. Sie können die Protokollierung für den DOORS-Client während des Starts mit dem folgenden Parameter hinzufügen.
doors.exe -msgLogFile "C:\temp\doorsclientlog.txt" -msgLogLevel 6
Hinweis: Das Protokoll enthält keine sensiblen Informationen, sondern nur Dateitransaktionen.
Nachdem der Vorgang, der eine Protokollierung erfordert, abgeschlossen ist:
- Beenden Sie den DOORS-Client
- Komprimieren Sie die Protokolldateien (z.B.: .zip-Datei) und senden Sie sie an den IBM-Support.
Das DOORS-Client-seitige Logging wird automatisch deaktiviert, wenn Sie den DOORS-Client beenden.
Sie können die Protokollierung auch deaktivieren, indem Sie den folgenden DXL-Befehl unter Tools > Edit DXL ausführen:
stopLogging_()
There are two options to enable DOORS client-side logs:
1. You run a DXL command from your DOORS client to enable client-side logging.
Run the following DXL from Rational DOORS client before you start the operation you need to debug:
string logfileLocation = "c:\\temp\\doorsclientlog.txt"
int logLevel = 6
startLogging_(logfileLocation, logLevel)
2. You can add logging for the DOORS client during startup using the following parameter.
doors.exe -msgLogFile "C:\temp\doorsclientlog.txt" -msgLogLevel 6
Note: There is no sensitive information in the log, only file transactions.
After the operation that requires logging is complete, you need to
- Exit the DOORS client
- Compress the log files (such as: .zip file) and send it to IBM Support.
DOORS client-side logging is automatically disabled when you exit the DOORS client.
You can also disable logging by running the following DXL command from Tools > Edit DXL:
stopLogging_()
0 Comments