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

Logger is used by Oracle developers to instrument their PL/SQL code
55 stars 145 forks source link

Allow for Other Logger Features to supply level #29

Closed martindsouza closed 9 years ago

martindsouza commented 11 years ago

The "[Other Logger Functions]https://github.com/tmuth/Logger---A-PL-SQL-Logging-Utility/wiki/Logger-API#wiki-other-logger-procedures) don't allow for the level to log them at.

This can be an issue in certain situations. For example _log_apexitems will only be logged when the current level is set to "APEX" (or 128). Developers may want this functionality when an error occurs in production (which usually runs using the "ERROR" logger level).

Implementation ideas: Not exactly sure how to implement this but odds are a new parameter, p_level (optional) will allow developers to call with a custom level. If defined, it will ignore the default settings and log based on the level.

martindsouza commented 9 years ago

This issue was moved to OraOpenSource/Logger#29