Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

E4/EAS/Logging and Tracing

< E4‎ | EAS
Revision as of 15:24, 23 October 2009 by Unnamed Poltroon (Talk) (Create the page.)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Components are going to want a way to send information into a log somewhere. This needs to be pluggable so that they can contain and dictate where this information should go and how it should be logged. Ideally, the default output of what e4 applications produce should be consumable by the 'Error Log' view from Eclipse 3.x. It should also be possible for applications to enable tracing.

This service is related to status handling.

Eclipse 3.x API

Logging:

  • org.osgi.service.log.LogService
  • org.eclipse.core.runtime.ILog

Tracing:

  • org.eclipse.core.runtime.Platform.getDebugOption(String)

e4 (Java)

Logging:

  • org.eclipse.e4.core.services.Logger

Back to the top