Index: app/resource_bundle.cc |
diff --git a/app/resource_bundle.cc b/app/resource_bundle.cc |
index b0e79ed93ecfdaded07fcd8aa978b96255c69c0b..93669bc2fcc8ab70bd80cb6606e2d48af9ec00f2 100644 |
--- a/app/resource_bundle.cc |
+++ b/app/resource_bundle.cc |
@@ -248,7 +248,9 @@ void ResourceBundle::LoadedDataPack::Load() { |
DCHECK(!data_pack_.get()); |
data_pack_.reset(new app::DataPack); |
bool success = data_pack_->Load(path_); |
- CHECK(success) << "Failed to load " << path_.value(); |
+ LOG_IF(ERROR, !success) << "Failed to load " << path_.value() |
+ << "\nYou will not be able to use the Bookmarks Manager or " |
+ << "about:net-internals."; |
} |
bool ResourceBundle::LoadedDataPack::GetStringPiece( |