-
Notifications
You must be signed in to change notification settings - Fork 344
[lldb] Fix log messages in resolveRemoteAddress #3868
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
[lldb] Fix log messages in resolveRemoteAddress #3868
Conversation
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.
Whoops! Thanks!
@swift-ci test |
@swift-ci test Linux |
@swift-ci test |
@swift-ci test |
"[MemoryReader] Could not make a real address out of file " | ||
"address {1:x} and object file {}", | ||
"[MemoryReader] Could not make a real address out of file address " | ||
"{0:x} and object file {}", |
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.
Just tested this, {}
will crash, change it to {1}
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.
done
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.
The docs appear to indicate the index isn't required
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.
Weird, maybe it's a bug then? Or maybe if you specify one position you have to specify all of them?
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 wondered the same, in any case I'll stick with explicit indexes. None of the unit tests for formatv seem to use {}
, so an index must be required.
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.
@swift-ci test |
No description provided.