tmuth/Logger---A-PL-SQL-Logging-Utility

logger_no_op.sql has mismatch of spec and body definitions for some procedures

rimblas opened this issue · 1 comments

In v2.1.2 the spec declaration for log_permanent,log_warning,log_information and log doesn't match the body.

For example in the spec:
procedure log_permanent(
p_text in varchar2,
p_scope in varchar2 default null,
p_extra in clob default null,
p_params in tab_param default logger.gc_empty_tab_param);

The body is missing p_params:
procedure log_permanent(p_text in varchar2,
p_scope in varchar2 default null,
p_extra in clob default null)

Fixed as part of #57