View Javadoc
1 /* 2 * Created on Sep 21, 2003 3 * Copyright (c) 2003. All rights reserved. 4 */ 5 package portaview; 6 7 /*** 8 * The basic logger class. 9 * @author <a href="mailto:wwlee1@uiuc.edu">William Lee</a> 10 * @version $Id: Log.java,v 1.5 2003/12/10 06:18:57 wlee Exp $ 11 */ 12 public class Log 13 { 14 /*** 15 * Initialzies the log. 16 * 17 */ 18 public static void init() 19 { 20 } 21 22 /*** 23 * Prints out a debug statement. 24 * @param str debug statement. 25 */ 26 public static void debug(String str) 27 { 28 PortaViewMain.debug(str); 29 } 30 }

This page was automatically generated by Maven