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 regarding 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.
