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:
doshimun 2008-07-30 19:39:48 +00:00
parent 85534c2eaf
commit 11dc028694

View file

@ -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;
}