You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by tr...@apache.org on 2005/10/19 17:37:13 UTC

svn commit: r326583 [2/2] - in /directory/network: branches/0.7/ branches/0.7/src/examples/org/apache/mina/examples/echoserver/ branches/0.7/src/examples/org/apache/mina/examples/sumup/ branches/0.7/src/java/org/apache/mina/common/ branches/0.7/src/jav...

Modified: directory/network/trunk/xdocs/faq.fml
URL: http://svn.apache.org/viewcvs/directory/network/trunk/xdocs/faq.fml?rev=326583&r1=326582&r2=326583&view=diff
==============================================================================
--- directory/network/trunk/xdocs/faq.fml (original)
+++ directory/network/trunk/xdocs/faq.fml Wed Oct 19 08:36:22 2005
@@ -72,6 +72,17 @@
           SSLEngine.  This means JDK 1.5 or above is required for you to
           use SSL with MINA.
         </p>
+        <p>
+          MINA depends on <a href="http://www.slf4j.org">SLF4J (Simple Logging
+          Facade for Java)</a>, a logging framework from the author of
+          <a href="http://logging.apache.org/log4j/docs/index.html">Log4J</a>.
+          SLF4J is very similar to
+          <a href="http://jakarta.apache.org/commons/logging/">Commons-Logging</a>,
+          but it doesn't cause any class loader issues at all.  SLF4J provides
+          bindings for Log4J, JDK 1.4 logging API, and NLog4J.  Please put an
+          appropriate SLF4J JAR file which corresponds to your favorite logging
+          framework to the classpath as SLF4J documentation explains.
+        </p>
       </answer>
     </faq>
 
@@ -320,6 +331,23 @@
         But you cannot add port-specific filters right now.  You'll have to
         create more than one <tt>IoAcceptor</tt> or <tt>ProtocolAcceptor</tt>
         because each acceptors have one filter chain you can adjust.
+      </answer>
+    </faq>
+
+    <faq id="logging-framework">
+      <quesion>
+        How can I let MINA log messages using my favorite logging framework (i.e. Log4J)?
+      </question>
+      <answer>
+        MINA depends on <a href="http://www.slf4j.org">SLF4J (Simple Logging
+        Facade for Java)</a>, a logging framework from the author of
+        <a href="http://logging.apache.org/log4j/docs/index.html">Log4J</a>.
+        SLF4J is very similar to
+        <a href="http://jakarta.apache.org/commons/logging/">Commons-Logging</a>,
+        but it doesn't cause any class loader issues at all.  SLF4J provides
+        bindings for Log4J, JDK 1.4 logging API, and NLog4J.  Please put an
+        appropriate SLF4J JAR file which corresponds to your favorite logging
+        framework to the classpath as SLF4J documentation explains.
       </answer>
     </faq>
   </part>