summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-28 04:07:13 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-28 04:07:13 +0000
commit7c6de19bed86fde0c8eb83c73e40a972ad54b837 (patch)
tree3d4cf1fb1f87eb991bab6a190abb377a2f1fcbeb
parentb4af12a4b86fd65581bc2e10caa53c67b42281e6 (diff)
downloadchromium_src-7c6de19bed86fde0c8eb83c73e40a972ad54b837.zip
chromium_src-7c6de19bed86fde0c8eb83c73e40a972ad54b837.tar.gz
chromium_src-7c6de19bed86fde0c8eb83c73e40a972ad54b837.tar.bz2
Log additional information to try and track down a crash.
BUG=142496 Review URL: https://chromiumcodereview.appspot.com/10869084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153625 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/extensions/crx_installer.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/extensions/crx_installer.cc b/chrome/browser/extensions/crx_installer.cc
index 0032034..f323dde 100644
--- a/chrome/browser/extensions/crx_installer.cc
+++ b/chrome/browser/extensions/crx_installer.cc
@@ -502,13 +502,16 @@ void CrxInstaller::CompleteInstall() {
// lazily and based on the Extension's root path at that moment.
// TODO(rdevlin.cronin): Continue removing std::string errors and replacing
// with string16
+ std::string extension_id = extension_->id();
std::string error;
extension_ = extension_file_util::LoadExtension(
version_dir,
install_source_,
extension_->creation_flags() | Extension::REQUIRE_KEY,
&error);
- LOG_ASSERT(error.empty()) << error;
+
+ LOG_ASSERT(error.empty()) << error << " " << extension_id << " "
+ << download_url_.spec();
ReportSuccessFromFileThread();
}