diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-04 18:25:54 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-04 18:25:54 +0000 |
commit | cf763c5317a34bdf18609ea93127390425e0f206 (patch) | |
tree | eb56cc500cf168c5e2e05de8a88091e4503e1e64 /chrome | |
parent | 7e76a808066e176130092393f8e509abfcbc181b (diff) | |
download | chromium_src-cf763c5317a34bdf18609ea93127390425e0f206.zip chromium_src-cf763c5317a34bdf18609ea93127390425e0f206.tar.gz chromium_src-cf763c5317a34bdf18609ea93127390425e0f206.tar.bz2 |
Increase the severity of the warning that is logged on extension load failure. This doesn't fix the bug, but might help with debugging until we have an alert box.
BUG=21109
TEST=no
Review URL: http://codereview.chromium.org/193023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25479 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/common/extensions/extension_error_reporter.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/extensions/extension_error_reporter.cc b/chrome/common/extensions/extension_error_reporter.cc index 87bd0f4..f6f0917 100644 --- a/chrome/common/extensions/extension_error_reporter.cc +++ b/chrome/common/extensions/extension_error_reporter.cc @@ -59,7 +59,7 @@ void ExtensionErrorReporter::ReportError(const std::string& message, // TODO(aa): Print the error message out somewhere better. I think we are // going to need some sort of 'extension inspector'. - LOG(WARNING) << message; + LOG(ERROR) << "Extension error: " << message; if (enable_noisy_errors_ && be_noisy) { #if defined(OS_WIN) |