-
Notifications
You must be signed in to change notification settings - Fork 729
New issue
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
Core: no longer log ID ranges on generate #4013
base: main
Are you sure you want to change the base?
Conversation
|
||
del item_digits, location_digits, item_count, location_count | ||
logger.info(f" {name:{longest_name}}: Items: {len(cls.item_names):{item_count}} " | ||
f"Locations: {len(cls.location_names):{location_count}} ") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you happen to know what this space is for / if it can be removed?
f"Locations: {len(cls.location_names):{location_count}} ") | |
f"Locations: {len(cls.location_names):{location_count}}") |
f"{max(cls.location_id_to_name):{location_digits}})") | ||
|
||
del item_digits, location_digits, item_count, location_count | ||
logger.info(f" {name:{longest_name}}: Items: {len(cls.item_names):{item_count}} " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the |
delimiter between the Items and Locations was helpful here
logger.info(f" {name:{longest_name}}: Items: {len(cls.item_names):{item_count}} " | |
logger.info(f" {name:{longest_name}}: Items: {len(cls.item_names):{item_count}} | " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree with Medic's reviews and would be willing to approve once they are addressed
What is this fixing or adding?
Once ID overlap is fine in clients, we don't need to spend processing on calculating and displaying this information
How was this tested?
with a local gen
If this makes graphical changes, please attach screenshots.