|
From: Dan S. <dds...@us...> - 2006-07-05 20:48:31
|
Update of /cvsroot/javax-usb/javax-usb-ri/docs In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1336/docs Modified Files: javax.usb.properties Log Message: add generic tracing interface to allow tracing from common or platform implementation to trace package of user's choice. simple null, stdout, and stderr trace implementations provided for now. Index: javax.usb.properties =================================================================== RCS file: /cvsroot/javax-usb/javax-usb-ri/docs/javax.usb.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** javax.usb.properties 13 Jan 2005 17:59:18 -0000 1.1 --- javax.usb.properties 5 Jul 2006 20:48:27 -0000 1.2 *************** *** 38,39 **** --- 38,67 ---- # short packet exceptions. #com.ibm.jusb.UsbIrpImp.createShortPacketException = false + + # This property sets the default UsbTracer implementation. The default is the NullUsbTracer, + # which does no tracing at all. These implementations are provided, or you can create your own: + # com.ibm.jusb.util.NullUsbTracer + # com.ibm.jusb.util.StandardOutUsbTracer + # com.ibm.jusb.util.StandardErrorUsbTracer + #com.ibm.jusb.util.UsbTracer=com.ibm.jusb.util.NullUsbTracer + + # These set the default name and level of the "global" UsbTracer object. The level may be specified + # as any of these defines: + # TRACE_CRITICAL + # TRACE_ERROR + # TRACE_WARN + # TRACE_NOTICE + # TRACE_INFO + # TRACE_DEBUG + #com.ibm.jusb.util.UsbTracer.global.name=Main UsbTracer + #com.ibm.jusb.util.UsbTracer.global.level=TRACE_DEBUG + + # This sets the level of messages that the StandardOutUsbTracer prints. Trace messages with + # lower priority than this will not be printed. This may be specified as any of the + # level defines listed above. + #com.ibm.jusb.util.StandardOutUsbTracer.currentLevel=TRACE_DEBUG + + # This sets the level of messages that the StandardErrorUsbTracer prints. Trace messages with + # lower priority than this will not be printed. This may be specified as any of the + # level defines listed above. + #com.ibm.jusb.util.StandardErrorUsbTracer.currentLevel=TRACE_DEBUG |