We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First of all, thanks for creating such a great utility! I'm using the latest version, 2022-06-08 1-RC.
To recreate the problem:
Call GET_LOGGER twice to create 2 LOGGERs, i.e. Org.Project1.LOG1 & Org.Project1.LOG2;
CONF_LOGGERS table looks like this: LOGGER_ID|NAME|PARENT_ID|LEVEL_ID 0|ROOT|(null)|3 1|Org|0|(null) 2|Project1|1|(null) 3|LOG1|2|(null) 4|LOG2|2|(null)
Call MODIFY_DESCENDANTS(2,5);
Nothing is changed in CONF_LOGGERS table.
The text was updated successfully, but these errors were encountered:
Thank you for reporting the issue.
As you mentionned, this procedure is not updating the descendants under the given conditions.
As an alternative, you can execute call logadmin.register_logger('Org.Project1.LOG1', 5).
call logadmin.register_logger('Org.Project1.LOG1', 5)
Sorry, something went wrong.
No branches or pull requests
First of all, thanks for creating such a great utility!
I'm using the latest version, 2022-06-08 1-RC.
To recreate the problem:
Call GET_LOGGER twice to create 2 LOGGERs, i.e. Org.Project1.LOG1 & Org.Project1.LOG2;
CONF_LOGGERS table looks like this:
LOGGER_ID|NAME|PARENT_ID|LEVEL_ID
0|ROOT|(null)|3
1|Org|0|(null)
2|Project1|1|(null)
3|LOG1|2|(null)
4|LOG2|2|(null)
Call MODIFY_DESCENDANTS(2,5);
Nothing is changed in CONF_LOGGERS table.
The text was updated successfully, but these errors were encountered: