1
Fork 0

use structured fields in some existing warnings

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2021-10-07 10:48:48 -07:00
parent 928c787fce
commit e00eac8b9c
No known key found for this signature in database
GPG key ID: F9C1A595C3814436
2 changed files with 5 additions and 6 deletions

View file

@ -844,8 +844,8 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(
if out.contains(msg_segv) || out.contains(msg_bus) {
warn!(
"looks like the linker segfaulted when we tried to call it, \
automatically retrying again. cmd = {:?}, out = {}.",
cmd, out,
automatically retrying again",
?cmd, %out,
);
continue;
}
@ -853,9 +853,8 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(
if is_illegal_instruction(&output.status) {
warn!(
"looks like the linker hit an illegal instruction when we \
tried to call it, automatically retrying again. cmd = {:?}, ]\
out = {}, status = {}.",
cmd, out, output.status,
tried to call it, automatically retrying again."
?cmd, %out, status = %output.status,
);
continue;
}