From 11dc02869471b92f6e11023477e9cfed9ff11cd0 Mon Sep 17 00:00:00 2001 From: doshimun Date: Wed, 30 Jul 2008 19:39:48 +0000 Subject: [PATCH] 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 --- src/tools/windows/converter/ms_symbol_server_converter.cc | 6 ++++++ 1 file changed, 6 insertions(+) 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; }