[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/marshal ...

Tom Elrod tom.elrod at jboss.com
Tue Nov 7 12:15:28 EST 2006


  User: telrod  
  Date: 06/11/07 12:15:28

  Modified:    src/main/org/jboss/remoting/marshal  Tag: remoting_2_x
                        MarshalFactory.java
  Log:
  Changed some logging from debug to trace as was too noisy
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.16.4.1  +10 -10    JBossRemoting/src/main/org/jboss/remoting/marshal/MarshalFactory.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MarshalFactory.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/marshal/MarshalFactory.java,v
  retrieving revision 1.16
  retrieving revision 1.16.4.1
  diff -u -b -r1.16 -r1.16.4.1
  --- MarshalFactory.java	16 Aug 2006 14:20:16 -0000	1.16
  +++ MarshalFactory.java	7 Nov 2006 17:15:28 -0000	1.16.4.1
  @@ -127,9 +127,9 @@
         }
         else
         {
  -         if(isDebug)
  +         if(isTrace)
            {
  -            log.debug("Could not find marshaller for class type '" + classType + "'.  Object in collection is " + obj);
  +            log.trace("Could not find marshaller for class type '" + classType + "'.  Object in collection is " + obj);
            }
         }
   
  @@ -178,9 +178,9 @@
         }
         else
         {
  -         if(isDebug)
  +         if(isTrace)
            {
  -            log.debug("Could not find unmarshaller for class type '" + classType + "'.  Object in collection is " + obj);
  +            log.trace("Could not find unmarshaller for class type '" + classType + "'.  Object in collection is " + obj);
            }
         }
         return unmarshaller;
  @@ -223,9 +223,9 @@
         }
         else
         {
  -         if(isDebug)
  +         if(isTrace)
            {
  -            log.debug("Could not find marshaller for data type '" + dataType + "'.  Object in collection is " + obj);
  +            log.trace("Could not find marshaller for data type '" + dataType + "'.  Object in collection is " + obj);
            }
         }
   
  @@ -281,9 +281,9 @@
         }
         else
         {
  -         if(isDebug)
  +         if(isTrace)
            {
  -            log.debug("Could not find unmarshaller for data type '" + dataType + "'.  Object in collection is " + obj);
  +            log.trace("Could not find unmarshaller for data type '" + dataType + "'.  Object in collection is " + obj);
            }
         }
   
  @@ -448,9 +448,9 @@
               }
               if(unmarshaller == null)
               {
  -               if(isDebug)
  +               if(isTrace)
                  {
  -                  log.debug("Could not find unmarshaller by data type ('" + dataType + "').  Will try to load dynamically.");
  +                  log.trace("Could not find unmarshaller by data type ('" + dataType + "').  Will try to load dynamically.");
                  }
   
                  // will now look for explicit param for marshaller class
  
  
  



More information about the jboss-cvs-commits mailing list