Skip to content

Commit f46778a

Browse files
committed
Elaborate error message
It confused me a bit in internal bug b/388386656#comment54. I thought it meant file not found! I hope that elaborating that it's the build ID mismatching will help future folks hitting this.
1 parent 073e01d commit f46778a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/bloaty.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2146,7 +2146,8 @@ void Bloaty::ScanAndRollup(const Options& options, RollupOutput* output) {
21462146
"$0 $1\n", absl::BytesToHexString(file_info.build_id_).c_str(),
21472147
file_info.filename_.c_str());
21482148
}
2149-
THROWF("Debug file(s) did not match any input file:\n$0\nInput Files:\n$1",
2149+
THROWF("Debug file(s) build ID did not match any input file build "
2150+
"ID:\n$0\nInput Files:\n$1",
21502151
unused_debug.c_str(), input_files.c_str());
21512152
}
21522153
}

0 commit comments

Comments
 (0)