0 Replies Latest reply on Jan 20, 2005 5:16 AM by chinafax

    log "inner variable" possible?

    chinafax

      Hi,
      Many articles mention that aop can use for logging. When we log something, we usually do it inside a method and will log "inner variable". Aop can do something at beforeprocess and afterprocess, is there any way to log "inner variable"?

      public void test(){
      String localString="local";
      Logger.getInstance().log(localString);
      }