Logger
Logger copied to clipboard
Logging Rowcount
Have an API call so that we can log rowcount in an easier method. Should look like:
logger.log_rowcount(p_str, p_scope ...) Internally it would:
begin
logger.log(p_string || ': ' || sql%rowcount', l_scope) ...
end;
Things to think of:
-
sql%rowcountwill be changed for any calls after - Enhance for bulk inserts etc...