User: jules_gosnell
  Date: 02/02/18 16:11:24

  Modified:    jetty/src/main/org/jboss/jetty/xml JettyResolver.java
  Log:
  sort logging
  
  Revision  Changes    Path
  1.2       +5 -3      contrib/jetty/src/main/org/jboss/jetty/xml/JettyResolver.java
  
  Index: JettyResolver.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/contrib/jetty/src/main/org/jboss/jetty/xml/JettyResolver.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- JettyResolver.java        13 Jan 2002 13:26:46 -0000      1.1
  +++ JettyResolver.java        19 Feb 2002 00:11:24 -0000      1.2
  @@ -34,13 +34,14 @@
     public
       JettyResolver()
     {
  -     // nothing
  +    // nothing
     }
   
     public InputSource
       resolveEntity (String publicId, String systemId)
     {
  -    _log.info("resolving "+publicId+" : "+systemId);
  +    if (_log.isDebugEnabled())
  +      _log.debug("resolving "+publicId+" : "+systemId);
   
       URL url=(URL)_map.get(publicId);
   
  @@ -50,7 +51,8 @@
       }
       else
       {
  -      _log.info("resolved "+publicId+" : "+url);
  +      if (_log.isDebugEnabled())
  +     _log.debug("resolved "+publicId+" : "+url);
         try
         {
        InputSource is=new InputSource(url.openConnection().getInputStream());
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to