Package nexj.core.util

Examples of nexj.core.util.Logger.dump()


      try
      {
         if (logger.isDebugEnabled())
         {
            logger.debug("Transforming a message with transformation " + transformation.getName());
            logger.dump(obj);
         }

         Transformation oldTransformation = transformation;

         if (!StringUtil.isEmpty(obj.getClassName()) && m_bPolymorphic)
View Full Code Here


            new Object[]{transformation.getName()}, e);
      }

      if (logger.isDumpEnabled())
      {
         logger.dump("Transformation result:");
         logger.dump(m_output);
      }

      return m_output;
   }
View Full Code Here

      }

      if (logger.isDumpEnabled())
      {
         logger.dump("Transformation result:");
         logger.dump(m_output);
      }

      return m_output;
   }
View Full Code Here

         if (args == null)
         {
            args = EMPTY_SYMBOL_ARRAY;
         }

         logger.dump("this = " + Intrinsic.toString((nOfs == 0) ? obj : args[0]));

         for (int i = 0, n = getArgumentCount() - ((m_bVarArg) ? 1 : 0); i < n; ++i)
         {
            if (i + nOfs >= args.length)
            {
View Full Code Here

            if (i + nOfs >= args.length)
            {
               break;
            }

            logger.dump(getArgument(i).getName() + " = " + Intrinsic.toString(args[i + nOfs]));
         }

         if (m_bVarArg)
         {
            StringBuffer buf = new StringBuffer(128);
View Full Code Here

               buf.append(Intrinsic.toString(args[i + nOfs]));
            }

            buf.append(')');

            logger.dump(buf.toString());
         }
      }
   }

   /**
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.