Apache Commons Logging: Difference between revisions

Content deleted Content added
top: typo: Intergrating -> Integrating & link to source
No edit summary
Line 1:
{{Infobox software
| name = Apache Commons Logging
| logo =
| screenshot =
| caption =
| developer = [[Apache Software Foundation]]
| released =
| latest release version = 1.2
| latest release date = {{release date|2015|07}}
| latest preview version =
| latest preview date =
| operating system = [[Cross-platform]]
| programming language = [[Java (programming language)|Java]]
| genre = [[Logging Tool]]
| license = [[Apache License]] 2.0
| website = http{{URL|https://commons.apache.org/proper/commons-logging/}}
}}
 
'''Apache Commons Logging''' (previously known as '''Jakarta Commons Logging''', ('''JCL)''') is a [[Java platform|Java]]-based [[data logging|logging]] utility and a programming model for logging and for other toolkits. It provides [[Application programming interface|API]]s, log implementations, and [[Adapter pattern|wrapper]] implementations over some other tools.<ref name=":ac">{{Cite web|url = http://commons.apache.org/proper/commons-logging/|title = commons logging|date = |accessdate = 12 February 2016|website = Apache.org|publisher = Apache|last = |first = }}</ref><ref name=":ijcliwas_2">{{Cite book|title = Integrating Jakarta Commons Logging with IBM WebSphere Application Server V5|url=http://www-01.ibm.com/support/docview.wss?uid=swg27004610&aid=1|last = Zavala|first = D.A.|last2 = Lau| first2 = Y.C.| publisher = IBM corporation|year = 2004|___location = |volume = |pages = 2}}</ref><ref name=":ac_c">{{Cite web|url = http://commons.apache.org/proper/commons-logging/guide.html|title = contents|date = |accessdate = 12 February 2016|website = Apache.org|publisher = Apache|last = |first = }}</ref>
 
== JCL log level ==
Line 60 ⟶ 61:
{
// Note that you pass in an instance of this class to the
// log generator. This allows you to find the messages
// generated by this class.
private static Log log = LogFactory.getLog(LogGenerator.class);
Line 159 ⟶ 160:
</source><ref name=":ajc_120"/>
 
== See also ==
{{Portal|Java|Free software}}
*[[log4j]]
*[[Chainsaw (log file viewer)]]
* {{GitHub|https://github.com/apache/commons-logging/commits?author=costinm}}
 
==References==
Line 169 ⟶ 170:
 
==External links==
* {{Official website|httphttps://commons.apache.org/proper/commons-logging/}}
 
{{Apache}}