FileDocCategorySizeDatePackage
Log.javaAPI DocphoneME MR2 API (J2ME)2072Wed May 02 18:00:30 BST 2007com.sun.midp.jsr82emul

Log

public class Log extends Object
Keeps debug logging utils. IMPL_NOTE: The class is just for convenient debugging only. When development the class and usages, remove it inlining log() body where it makes sense.

Fields Summary
Constructors Summary
Methods Summary
public static voidlog(java.lang.String msg)
Logs by means of midp Logging utils.

param
msg message to log

         if (Logging.REPORT_LEVEL <= Logging.INFORMATION) {
             println(msg);
         }
     
public static voidprintln(java.lang.String msg)
Logs by means of System.out.println. Avoid putting code that uses this method into master workspace.

param
msg message to log

         System.out.println(msg);