CREATE OR REPLACE PACKAGE xx_rdbms_debug IS /* * ----------------------------------------------------------------------------- * ObjectName: * XX_RDBMS_DEBUG.spc * * Referenced by: * * * Usage: * Simple package which can be called for custom code debug. * The procedure calllog will simply insert debug information in a debug table. * * History: * Version Date Author(s) Description * ------- ----------- ------------------- ------------------------------------- * 1.0 14-OCT-2007 Johan Louwers Initial Version. * ----------------------------------------------------------------------------- */ PROCEDURE calllog( p_logmessage IN VARCHAR2 ) ; END xx_rdbms_debug;