sgoeschl    2005/04/26 05:29:32

  Modified:    yaafi/src/java/org/apache/fulcrum/yaafi/framework/util
                        InputStreamLocator.java
  Log:
  Dumping the lcoation of the resource when found
  
  Revision  Changes    Path
  1.4       +2 -0      
jakarta-turbine-fulcrum/yaafi/src/java/org/apache/fulcrum/yaafi/framework/util/InputStreamLocator.java
  
  Index: InputStreamLocator.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-fulcrum/yaafi/src/java/org/apache/fulcrum/yaafi/framework/util/InputStreamLocator.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- InputStreamLocator.java   31 Mar 2005 12:13:03 -0000      1.3
  +++ InputStreamLocator.java   26 Apr 2005 12:29:31 -0000      1.4
  @@ -79,6 +79,7 @@
                        if( file.exists() )
                        {
                                is = new FileInputStream( file );
  +                             this.getLogger().debug("Found " + location + " 
as " + file.getAbsolutePath() );
                        }
                }
   
  @@ -94,6 +95,7 @@
                        if( file.isAbsolute() && file.exists() )
                        {
                                is = new FileInputStream( file );
  +                             this.getLogger().debug("Found " + location + " 
as " + file.getAbsolutePath() );
                        }
                }
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to