How to change log output level of RTC Eclipse client?
One of my customer want to trace every transaction of client (Eclipse) and want to know
- what trace level we can change? - how we can change? I had check many documents of Eclipse but this dose not seem to be applied to RTC Eclipse client. If anyone know there is a way to change log output level to be debug or fine, then let me know. |
One answer
Hello Ryo,
this comes with creating some custom file which contains the debug options.
You then start this Eclipse Client with the debug option pointing to this file:
http://help.eclipse.org/indigo/topic/org.eclipse.platform.doc.isv/reference/misc/runtime-options.html
This said, not sure what you mean by "trace every transaction of client".
If you want to check client / [RTC] server exchanges,
with not use the metronome feature
?
Thanks,
Eric
Comments
ryosuke oka
commented Oct 06 '13, 8:21 a.m.
Hi Eric, Thank you for your answer.
ryosuke oka
commented Oct 06 '13, 8:22 a.m.
Hello Ryo,
once you created a file with your debug options,
you create an Eclipse shortcut and point eclipse.exe to use this file
eclipse.exe -debug <some_path>/super_options.file
Hope it helps
Eric
ryosuke oka
commented Oct 18 '13, 1:52 a.m.
thank you, Eric.
Hello Ryo,
did you use SCM tracing settings?
Are you looking for some setting?
You may contact Glenn Bardwel
Eric
Kevin Ramer
commented Oct 18 '13, 4:05 p.m.
RE:
What had happened was one there was a issue of build and the cause was 2 same component name on the same stream. Finding things about component/streams can also be done by looking at "Recent Events" on a project area. If you do this within a short period of time after discovery you might find an entry relating to the event. In eclipse client, right click the project label, choose Show / Recent Events. There are categories for Source Control Changes, Source Control Components and Source Control Streams. I've discovered who/when relating to a change in stream component this way in the past.
Guillermo Hurtado
commented Nov 15 '13, 5:22 p.m.
Hello Ryo,
The following worked for me...
1) Created a file named logging.properties and added the following:
com.ibm.team.repository.transport.auth.Tracer.level=ALL
com.ibm.team.repository.transport.client.ClientHttpUtil.level=ALL
httpclient.wire.header.level=FINEST
org.apache.commons.httpclient.level=FINEST
2) Edited eclipse.ini and added the following at the end:
-Djava.util.logging.config.file=<path to created logging.properties>
3) Deleted all logs under .metadata folder
4) Restarted eclipse with -clean parameter
This produced a .log file with entries for the HTTP connections.
showing 5 of 7
show 2 more comments
|
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.
Comments
Adding more explanation for this.
I mean .metadata/.log output in RTC client.
Thank you.