You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by le...@apache.org on 2002/03/05 14:04:11 UTC

cvs commit: jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler DefaultProfilerManager.java

leif        02/03/05 05:04:11

  Modified:    src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler
                        DefaultProfilerManager.java
  Log:
  Display the correct path for errors.
  
  Revision  Changes    Path
  1.4       +3 -3      jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler/DefaultProfilerManager.java
  
  Index: DefaultProfilerManager.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler/DefaultProfilerManager.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DefaultProfilerManager.java	5 Mar 2002 12:34:32 -0000	1.3
  +++ DefaultProfilerManager.java	5 Mar 2002 13:04:11 -0000	1.4
  @@ -36,7 +36,7 @@
   /**
    *
    * @author <a href="mailto:leif@silveregg.co.jp">Leif Mortenson</a>
  - * @version CVS $Revision: 1.3 $ $Date: 2002/03/05 12:34:32 $
  + * @version CVS $Revision: 1.4 $ $Date: 2002/03/05 13:04:11 $
    * @since 4.1
    */
   public class DefaultProfilerManager
  @@ -275,7 +275,7 @@
           throws Exception
       {
           long now = System.currentTimeMillis();
  -        getLogger().debug( "Loading profiler state from: " + stateFile );
  +        getLogger().debug( "Loading profiler state from: " + stateFile.getAbsolutePath() );
           
           FileInputStream is = new FileInputStream( stateFile);
           try
  @@ -348,7 +348,7 @@
           throws Exception
       {
           long now = System.currentTimeMillis();
  -        getLogger().debug( "Saving profiler state to: " + stateFile );
  +        getLogger().debug( "Saving profiler state to: " + stateFile.getAbsolutePath() );
           
           FileOutputStream os = new FileOutputStream( stateFile );
           try
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>