You can enable or disable error logging using either the API or environment variables. By default, a file called kvoop.log
is created in the system temporary directory; however, you can change the path and file name of this file (see Change the Path and File Name of the Log File).
To enable or disable logging in the API, instantiate the Filter object using the constructor Filter(java.lang.String outputCharSet, long filterFlags)
, and set the filterFlags
argument to either FILTERFLAG_OOPLOGON
or FILTERFLAG_OOPLOGOFF
. For example:
objFilter = new Filter(outputCharSet, Filter.FILTERFLAG_OOPLOGON);
To enable logging, add the environment variable KVOOPLOGON
, and set the variable value to 1. To disable logging, do not set the environment variable KVOOPLOGON
.
|