diff options
author | doshimun <doshimun@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2008-07-30 19:39:48 +0000 |
---|---|---|
committer | doshimun <doshimun@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2008-07-30 19:39:48 +0000 |
commit | 11dc02869471b92f6e11023477e9cfed9ff11cd0 (patch) | |
tree | 1c2ec070c5a6fc55776f37becc1dbc3a51e2e0eb /src/tools/windows/converter | |
parent | Now we provide our own implementation of the MIG function exc_server, as reco... (diff) | |
download | breakpad-11dc02869471b92f6e11023477e9cfed9ff11cd0.tar.xz |
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
Diffstat (limited to 'src/tools/windows/converter')
-rw-r--r-- | src/tools/windows/converter/ms_symbol_server_converter.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/windows/converter/ms_symbol_server_converter.cc b/src/tools/windows/converter/ms_symbol_server_converter.cc index 725eeeb9..2b6278ba 100644 --- a/src/tools/windows/converter/ms_symbol_server_converter.cc +++ b/src/tools/windows/converter/ms_symbol_server_converter.cc @@ -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; } |