You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by oz...@apache.org on 2004/08/04 13:18:41 UTC

cvs commit: jakarta-slide/src/stores/org/apache/slide/store/impl/rdbms StandardRDBMSAdapter.java

ozeigermann    2004/08/04 04:18:41

  Modified:    src/stores/org/apache/slide/store/impl/rdbms
                        StandardRDBMSAdapter.java
  Log:
  Switched unimportant logging to debug instead of info to keep output clean
  
  Revision  Changes    Path
  1.31      +7 -7      jakarta-slide/src/stores/org/apache/slide/store/impl/rdbms/StandardRDBMSAdapter.java
  
  Index: StandardRDBMSAdapter.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/stores/org/apache/slide/store/impl/rdbms/StandardRDBMSAdapter.java,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- StandardRDBMSAdapter.java	3 Aug 2004 11:02:47 -0000	1.30
  +++ StandardRDBMSAdapter.java	4 Aug 2004 11:18:41 -0000	1.31
  @@ -740,7 +740,7 @@
                   }
                   result = new NodeRevisionContent();
                   if (bcompress) {
  -                    getLogger().log("DeCompressing the data", LOG_CHANNEL, 6);
  +                    getLogger().log("DeCompressing the data", LOG_CHANNEL, Logger.DEBUG);
                       StoreContentZip ziputil = new StoreContentZip();
                       ziputil.UnZip(is);
                       revisionDescriptor.setContentLength(ziputil.getContentLength());
  @@ -1038,7 +1038,7 @@
               getLogger().log(
                   revisionDescriptors.getOriginalUri() + revisionDescriptors.getInitialRevision(),
                   LOG_CHANNEL,
  -                Logger.INFO);
  +                Logger.DEBUG);
           } catch (SQLException e) {
               throw createException(e, uri.toString());
           }
  @@ -1178,7 +1178,7 @@
           if (is != null) {
               long contentLength = 0;
               if (bcompress) {
  -                getLogger().log("Compressing the data", LOG_CHANNEL, 6);
  +                getLogger().log("Compressing the data", LOG_CHANNEL, Logger.DEBUG);
                   StoreContentZip ziputil = new StoreContentZip();
                   ziputil.Zip(is);
                   is = ziputil.getInputStream();
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: slide-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: slide-dev-help@jakarta.apache.org