Version 3
    /*
     * JBoss, the OpenSource J2EE webOS
     *
     * Distributable under LGPL license.
     * See terms of license at gnu.org.
     */
    package org.jboss.test.aop.bean;
    
    /**
     * A simple logger
     *
     * @author <a href="mailto:adrian@jboss.com">Adrian Brock</a>
     * @version $Revision: 1.1 $
     */
    public class LogUtil
    {
       public void log(String message)
       {
          System.out.println(message);
       }
    }