Bug 1977693
| Summary: | It is not easy to increase the log level of the Pulp 3 backend | |||
|---|---|---|---|---|
| Product: | Red Hat Satellite | Reporter: | Matthias Dellweg <mdellweg> | |
| Component: | Installation | Assignee: | Eric Helms <ehelms> | |
| Status: | CLOSED ERRATA | QA Contact: | Devendra Singh <desingh> | |
| Severity: | medium | Docs Contact: | ||
| Priority: | unspecified | |||
| Version: | 6.9.0 | CC: | bbuckingham, gtalreja, peter.vreman, shwsingh, wclark, zhunting | |
| Target Milestone: | 6.10.0 | Keywords: | Triaged | |
| Target Release: | Unused | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | If docs needed, set a value | ||
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 1985322 (view as bug list) | Environment: | ||
| Last Closed: | 2021-11-16 14:12:12 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Embargoed: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 1957813 | |||
Created redmine issue https://projects.theforeman.org/issues/32968 from this bug Upstream bug assigned to ehelms Upstream bug assigned to ehelms Also related, removal of pulp2 service definitions in hammer admin: https://bugzilla.redhat.com/show_bug.cgi?id=1976885 moving feature 'enable debug logging' from hammer admin to foreman maintain: https://bugzilla.redhat.com/show_bug.cgi?id=1980904 Moving this bug to POST for triage into Satellite since the upstream issue https://projects.theforeman.org/issues/32968 has been resolved. Moving this bug to POST for triage into Satellite since the upstream issue https://projects.theforeman.org/issues/32968 has been resolved. Verified on 6.10.0 Snap20
Verification points:
1- Check the hammer logging command and found the pulp3 entry there
# hammer admin logging --list
-----------|------------------------------------------|--------------------------------------------------
COMPONENT | AUTO-DETECTED BY EXISTENCE OF | DESTINATIONS
-----------|------------------------------------------|--------------------------------------------------
.............................
pulpcore | /etc/pulp/settings.py | syslog
...............................
2- Check the verbosity of logging in the /etc/pulp/settings.py and log_level was INFO
LOGGING = {
"dynaconf_merge": True,
"loggers": {
'': {
'handlers': ['console'],
'level': 'INFO',
}
}
}
3- Increase the pulp3 log level
# hammer admin logging -c pulpcore -d
# foreman-maintain service restart
4- Check the verbosity of logging in the /etc/pulp/settings.py and log_level was DEBUG
LOGGING = {
"dynaconf_merge": True,
"loggers": {
'': {
'handlers': ['console'],
'level': 'DEBUG',
}
}
}
5- Reduce the pulp3 log level and it has changed to info
#hammer admin logging -c pulpcore --level-production
LOGGING = {
"dynaconf_merge": True,
"loggers": {
'': {
'handlers': ['console'],
'level': 'INFO',
}
}
}
6- Verified fixed in version.
# rpm -qa|grep -e tfm-rubygem-hammer_cli_foreman_admin -e foreman-installer
foreman-installer-2.5.2.5-1.el7sat.noarch
foreman-installer-katello-2.5.2.5-1.el7sat.noarch
tfm-rubygem-hammer_cli_foreman_admin-1.1.0-1.el7sat.noarch
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (Moderate: Satellite 6.10 Release), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2021:4702 |
Description of problem: To debug issues with Pulp 3, it is important to set the log level to DEBUG. This can be achieved by putting "LOGGING = {"dynaconf_merge": True, "loggers": {'': {'handlers': ['console'], 'level': 'DEBUG'}}}" in "/etc/pulp/settings.py". It would be much easier if that line was already there with the default log-level. Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info: