RE : [log4plsql] (no subject)call stack
Brought to you by:
gmoulard
From: <log...@li...> - 2004-02-27 18:49:53
|
Hi, There is a small change in INSTR function or with my nls caratere set. Now in my enviroment there is no problem. Regards, Guillaume Moulard gmo...@us... Project : LOG4PLSQL : Oracle Database Loggin tools see : http://log4plsql.sourceforge.net/ and : http://sourceforge.net/mailarchive/forum.php?forum=3Dlog4plsql-all-i= nfo or http://www.mail-archive.com/log...@li... for log...@li... -----Message d'origine----- De : log...@li... [mailto:log4plsql-all= -in...@li...] Envoy=E9 : jeudi 26 f=E9vrier 2004 15:25 =C0 : log...@li... Objet : [log4plsql] (no subject) Hi, I'm just starting to use log4plsql in our new application - think it's a = great tool! I'm having trouble getting call stack logging to work by default. I'm running version 3.1.2.1, on Oracle 9i. I've written the following very simple test code. Create or replace package insert_error as procedure insert_error; end insert_error; Create or replace package outer_insert_error as procedure outer_insert_error; end outer_insert_error; create or replace package body insert_error as procedure insert_error is begin plog.fatal('insert'); end insert_error; end insert_error; create or replace package body outer_insert_error as procedure outer_insert_error is begin insert_error.insert_error(); end outer_insert_error; end outer_insert_error; I then run this using begin outer_insert_error.outer_insert_error(); end; / And doing a select from vlog, I would expect to see some information rega= rding the call stack, but in fact what I get is as follows: Can anyone suggest an answer? Thanks in advance for your help, Scott Robinson. |