You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently each of the logger.log_xyz procedures calls log_internal(... p_callstack => dbms_utility.format_call_stack ...). Then log_internal will determine if the callstack should be displayed and parsed.
This may be a performance issue since dbms_utility.format_call_stack may not be required when the callstack option is turned off. I.e. we should put the check to determine callstack (include_call_stack) in each of the logger.log_xyz procedures calls.
The text was updated successfully, but these errors were encountered:
Currently each of the
logger.log_xyz
procedures callslog_internal(... p_callstack => dbms_utility.format_call_stack ...)
. Thenlog_internal
will determine if the callstack should be displayed and parsed.This may be a performance issue since
dbms_utility.format_call_stack
may not be required when the callstack option is turned off. I.e. we should put the check to determine callstack (include_call_stack
) in each of thelogger.log_xyz
procedures calls.The text was updated successfully, but these errors were encountered: