Log a failure message in case of LOCATE_NOT_FOUND error.
Without this change, no error is logged in this case. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@283 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
85534c2eaf
commit
11dc028694
1 changed files with 6 additions and 0 deletions
|
@ -285,6 +285,12 @@ MSSymbolServerConverter::LocateSymbolFile(const MissingSymbolInfo &missing,
|
|||
|
||||
// This is an authoritiative file-not-found message.
|
||||
if (fail_not_found_) {
|
||||
fprintf(stderr,
|
||||
"LocateSymbolFile: SymFindFileInPath: LOCATE_NOT_FOUND error "
|
||||
"for %s %s %s\n",
|
||||
missing.debug_file.c_str(),
|
||||
missing.debug_identifier.c_str(),
|
||||
missing.version.c_str());
|
||||
return LOCATE_NOT_FOUND;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue