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
But in the script (logger_no_op.sql) I see no sign of the table NOT being created:
begin
-- Create Table
select count(1)
into l_count
from user_tables
where table_name = 'LOGGER_LOGS';
if l_count = 0 then
execute immediate '
create table logger_logs(
I think the table will be created. So either the doc or the script is wrong.
The text was updated successfully, but these errors were encountered:
https://github.com/OraOpenSource/Logger/blob/master/docs/Installation.md#no-op-option-for-production-environments
"It does not even create the tables so there is absolutely no chance it is doing any logging."
But in the script (logger_no_op.sql) I see no sign of the table NOT being created:
I think the table will be created. So either the doc or the script is wrong.
The text was updated successfully, but these errors were encountered: