Guest User

Untitled

a guest
Jun 25th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. if (LOGGER.isDebugEnabled()) {
  2. LOGGER.debug("model[" + model + "]");
  3. }
  4.  
  5. LOGGER.debug("model[" + model + "]");
  6.  
  7. LOGGER.debug("model[" + proxy.getModel() + "]");
  8.  
  9. if (LOGGER.isDebugEnabled()) {
  10. String msg = "A Message {0} you can put {1} differet Objects in {2}"; //$NON-NLS-1$
  11. Object[] args = new Object[] {file1.toString(),new Integer(23),anObject};
  12. LOGGER.debug(MessageFormat.format(msg,args));
  13. }
Add Comment
Please, Sign In to add comment