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/Doc/Logging

< E4‎ | Doc
Revision as of 21:58, 10 February 2010 by Unnamed Poltroon (Talk) (New page: == Logging And Tracing == <center> <h2><font color=red>A Work In Progress, Please Read First</font></h2> <!-- Leave this notification text for each service --> {| style="background-color:...)

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

Logging And Tracing

A Work In Progress, Please Read First

The evolution of this document is a collaborative effort between a team of students at the University of Manitoba and the wider Eclipse community.

Details about the project can be found here and on our Google Site.

Your input is not only welcome but needed! Please contribute as your expertise allows keeping in mind our Document Guidelines. To send your feedback and any questions or comments you may have please email us.

Description

The ability to output knowledge from an executing program is incredibly useful in determining a variety of problems including crashes, bugs and performance issues. The action of outputting this information during runtime to a storage medium (txt file, database, xml etc.) is known as logging and tracing and is common among all practices of software development. When implementing or using logging and tracing it is useful to be aware of the Singleton Pattern as it is the most common implementation of a logger.

Logging and tracing are the same concept but used to describe varying levels of information. Logging generally refers to higher level information, generally useful to System Administrators on a production system, whereas Tracing is generally more low-level and more useful to developers doing debugging of large systems.

Consumer

e4 specific description of the service/ implementation details etc.

Usage

(natural breakdown relevant to the service itself here)

Code Samples

System.out.println("I'm some java code");
alert("I'm some javascript");

Eclipse 3.x

(only if it's relevant AND helpful)

Producer

e4 specific description of the service/ implementation details etc.

Usage

Code Samples

Eclipse 3.x

(this is not likely needed here)

Related Materials

Related Services

Related API's

See Also

Copyright © Eclipse Foundation, Inc. All Rights Reserved.