Home | Previous Page | Next Page   Creating Java User-Defined Routines > Writing a Java User-Defined Routine >

The com.informix.udr.UDRLog

The UDRLog interface provides a simple logging facility for a UDR. The UDRLog interface is defined as follows:

public interface UDRLog
{
   void log(String msg);
}

The interface defines a single method, log(), which takes a String argument and appends it to the JVP log file, which the JVPLOGFILE configuration parameter specifies. For more information, see Generating Log Messages.

Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]