<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Generator" content="Microsoft Word 12 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
        {mso-style-priority:99;
        mso-style-link:"Balloon Text Char";
        margin:0in;
        margin-bottom:.0001pt;
        font-size:8.0pt;
        font-family:"Tahoma","sans-serif";}
span.im
        {mso-style-name:im;}
span.EmailStyle18
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
span.BalloonTextChar
        {mso-style-name:"Balloon Text Char";
        mso-style-priority:99;
        mso-style-link:"Balloon Text";
        font-family:"Tahoma","sans-serif";}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D">Thanks a lot for your reply Chris<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D"><o:p> </o:p></span></p>
<div style="border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in">
<p class="MsoNormal"><b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif"">From:</span></b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif""> slf4j-user [mailto:slf4j-user-bounces@qos.ch]
<b>On Behalf Of </b>Chris Pratt<br>
<b>Sent:</b> Wednesday, February 22, 2017 5:41 PM<br>
<b>To:</b> User list for the slf4j project<br>
<b>Subject:</b> Re: [slf4j-user] Question on SLF4J - binding<o:p></o:p></span></p>
</div>
<p class="MsoNormal"><o:p> </o:p></p>
<div>
<p class="MsoNormal">That is EXACTLY what SLF4j is there for.  You call the SLF4j API front-end and leave the decision about what logging engine up to whoever writes the main program.<o:p></o:p></p>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">In the example from your first message:<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal">Application used by client A: would have to do nothing, but they would never see any output from your logging statements.<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal">Application used by client B: would add slf4j-log4j.jar to their application and all your logging statements would show up in their normal logs (depending on how they configured the logging for your package)<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal">Application used by client C: would add slf4j-jul.jar to their application and all your logging statements would show up in their normal logs (depending on how they configured the logging for your package)<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">You should not be using ANYTHING directly from the log4j-simple.jar file, only use things made public by log4j-api.jar and you will be fine.<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">As Joachim said, if you need to do testing on your library (a very good idea), that is when you would add the log4j-simple.jar to your test harness and the messages would magically appear in System.out.<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal">  (*Chris*)<o:p></o:p></p>
</div>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
<div>
<p class="MsoNormal">On Wed, Feb 22, 2017 at 2:05 PM, Chen, Richard - 2 <<a href="mailto:rchen7@ml.com" target="_blank">rchen7@ml.com</a>> wrote:<o:p></o:p></p>
<p class="MsoNormal">Thanks for the reply, Jo.<br>
<br>
The java library is developed by my team. Our java library doesn’t know about the main program (various clients applications). And the original goal for using SLF4J is logging for our java library, not for the main program(clients applications). I want to keep
 one version of our java library, in other words, having just one JAR file, (not multiple versions of JARs with different bindings). Is that possible?<br>
And between the binding used in our java library and the logging framework used by a client's application, if they are different, will it cause any error/problem?<br>
Thanks.<o:p></o:p></p>
<div>
<div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><br>
<br>
<br>
-----Original Message-----<br>
From: slf4j-user [mailto:<a href="mailto:slf4j-user-bounces@qos.ch">slf4j-user-bounces@qos.ch</a>] On Behalf Of Joachim Durchholz<br>
Sent: Wednesday, February 22, 2017 4:55 PM<br>
To: <a href="mailto:slf4j-user@qos.ch">slf4j-user@qos.ch</a><br>
Subject: Re: [slf4j-user] Question on SLF4J - binding<br>
<br>
On <a href="tel:22.02.2017%2022">22.02.2017 22</a>:40, Chen, Richard - 2 wrote:<br>
> Since I am bind to simple, I understand logging wouldn’t work, but<br>
> will it cause any errors/issues for having it bind to simple?<br>
<br>
Since the backend is a per-application decision, that decision should be made by the main program, not by any library (SLF4J was built specifically to allow libraries to do logging without committing to a specific backend).<br>
<br>
If you want to see log output from your test code, then your test code should bind to a backend, yes.<br>
<br>
That's why you typically add logging backends to the "test" scope in<br>
Maven: These are used just during testing and not made part of the generated jar files.<br>
<br>
HTH<br>
Jo<br>
_______________________________________________<br>
slf4j-user mailing list<br>
<a href="mailto:slf4j-user@qos.ch">slf4j-user@qos.ch</a><br>
<a href="http://mailman.qos.ch/mailman/listinfo/slf4j-user" target="_blank">http://mailman.qos.ch/mailman/listinfo/slf4j-user</a><o:p></o:p></p>
</div>
</div>
<p class="MsoNormal">----------------------------------------------------------------------<br>
<span class="im">This message, and any attachments, is for the intended recipient(s) only, may contain information that is privileged, confidential and/or proprietary and subject to important terms and conditions available at
<a href="http://www.bankofamerica.com/emaildisclaimer" target="_blank">http://www.bankofamerica.com/emaildisclaimer</a>.   If you are not the intended recipient, please delete this message.</span><o:p></o:p></p>
<div>
<div>
<p class="MsoNormal">_______________________________________________<br>
slf4j-user mailing list<br>
<a href="mailto:slf4j-user@qos.ch">slf4j-user@qos.ch</a><br>
<a href="http://mailman.qos.ch/mailman/listinfo/slf4j-user" target="_blank">http://mailman.qos.ch/mailman/listinfo/slf4j-user</a><o:p></o:p></p>
</div>
</div>
</div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
</div>

<HR>This message, and any attachments, is for the intended recipient(s) only, may contain information that is privileged, confidential and/or proprietary and subject to important terms and conditions available at http://www.bankofamerica.com/emaildisclaimer.   If you are not the intended recipient, please delete this message.<BR>
</body>
</html>