org.mgif.util.logging
Interface Logger


public interface Logger

The Logger interface is used to log messages to the application log.

A Logger may be obtained by calling to the getLogger() method on ActorSession or ApplicationInstance.


Method Summary
 void config(java.lang.String msg)
          Log a CONFIG message.
 void fine(java.lang.String msg)
          Log a FINE message.
 void finer(java.lang.String msg)
          Log a FINER message.
 void finest(java.lang.String msg)
          Log a FINEST message.
 void info(java.lang.String msg)
          Log a INFO message.
 void severe(java.lang.String msg)
          Log a SEVERE message.
 void throwing(java.lang.String sourceClass, java.lang.String sourceMethod, java.lang.Throwable throwing)
          Log a THROWING message.
 void warning(java.lang.String msg)
          Log a WARNING message.
 

Method Detail

config

public void config(java.lang.String msg)
Log a CONFIG message.
Parameters:
msg - The string message

fine

public void fine(java.lang.String msg)
Log a FINE message.
Parameters:
msg - The string message

finer

public void finer(java.lang.String msg)
Log a FINER message.
Parameters:
msg - The string message

finest

public void finest(java.lang.String msg)
Log a FINEST message.
Parameters:
msg - The string message

info

public void info(java.lang.String msg)
Log a INFO message.
Parameters:
msg - The string message

severe

public void severe(java.lang.String msg)
Log a SEVERE message.
Parameters:
msg - The string message

throwing

public void throwing(java.lang.String sourceClass,
                     java.lang.String sourceMethod,
                     java.lang.Throwable throwing)
Log a THROWING message.
Parameters:
sourceClass - The source class
sourceMethod - The source method
msg - The string message

warning

public void warning(java.lang.String msg)
Log a WARNING message.
Parameters:
msg - The string message


Copyright © 2002 Mobile Games Interoperability Forum. All rights reserved.
This source code is protected by the legal notice posted at http://www.mgif.org/docs/notice.html