Skip to content

Commit

Permalink
Merge pull request #5938 from rvykydal/update-max-package-info-messag…
Browse files Browse the repository at this point in the history
…e-length

logging: fix the length limit of packages info dbg message
  • Loading branch information
rvykydal authored Oct 15, 2024
2 parents 93f7e96 + 0f5baa5 commit a79eb89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anaconda.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def setup_environment():

log.info("%s %s", sys.argv[0], util.get_anaconda_version_string(build_time_version=True))
# Do not exceed default 8K limit on message length in rsyslog
for log_line in util.get_image_packages_info(max_string_chars=8096-100):
for log_line in util.get_image_packages_info(max_string_chars=8096-120):
log.debug("Image packages: %s", log_line)

if opts.updates_url:
Expand Down

0 comments on commit a79eb89

Please sign in to comment.