Change symbol upload message to include 'breakpad'

The breakpad symbol uploader prints messages of this form:

    Uploaded symbols for windows-x86/eventlog_provider.dll.pdb/...

This is confusing because many people see this message and assume that
symbols are being uploaded to a symbol server. This changes the message
to clarify what is happening.

BUG=677226

Change-Id: Id6fdd8497d0cb97be43c4af010058aab9d84375c
Reviewed-on: https://chromium-review.googlesource.com/434187
Reviewed-by: Mark Mentovai <mark@chromium.org>
This commit is contained in:
Bruce Dawson 2017-01-27 18:47:17 -08:00 committed by Mark Mentovai
parent 0924d424e4
commit 76a48f4aa9

View File

@ -249,7 +249,7 @@ int wmain(int argc, wchar_t *argv[]) {
_wunlink(symbol_file.c_str());
if (success) {
wprintf(L"Uploaded symbols for windows-%s/%s/%s (%s %s)\n",
wprintf(L"Uploaded breakpad symbols for windows-%s/%s/%s (%s %s)\n",
pdb_info.cpu.c_str(), pdb_info.debug_file.c_str(),
pdb_info.debug_identifier.c_str(), code_file.c_str(),
file_version.c_str());