Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Equinox/p2/TransportDebugging"

< Equinox‎ | p2
(New page: The following set of system properties can be enabled to debug http / https connection when p2 is setup to use the Apache Http Client (this is the default case in the eclipse SDK) -Dorg....)
 
Line 6: Line 6:
 
  -Dorg.apache.commons.logging.simplelog.log.org.apache.commons.httpclient=debug
 
  -Dorg.apache.commons.logging.simplelog.log.org.apache.commons.httpclient=debug
 
  -Dorg.apache.commons.logging.simplelog.log.httpclient.wire=debug
 
  -Dorg.apache.commons.logging.simplelog.log.httpclient.wire=debug
 +
 +
[[Category:Equinox p2| Transport debugging / tracing]]

Revision as of 14:09, 8 April 2010

The following set of system properties can be enabled to debug http / https connection when p2 is setup to use the Apache Http Client (this is the default case in the eclipse SDK)

-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog
-Dorg.apache.commons.logging.simplelog.showdatetime=true 
-Dorg.apache.commons.logging.simplelog.log.httpclient.wire.header=debug
-Dorg.apache.commons.logging.simplelog.log.org.apache.commons.httpclient=debug
-Dorg.apache.commons.logging.simplelog.log.httpclient.wire=debug

Back to the top