diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-28 22:49:27 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-28 22:49:27 +0000 |
commit | 26f025e36b53b7691dc6cc2eb4db15b225418058 (patch) | |
tree | 2103459982819f9461bf004e8aa8f2d9bdbf0e05 /chrome/common/extensions/extension_l10n_util.cc | |
parent | 68013c2a6702fd9c72d3a4e3a2772559ce32202c (diff) | |
download | chromium_src-26f025e36b53b7691dc6cc2eb4db15b225418058.zip chromium_src-26f025e36b53b7691dc6cc2eb4db15b225418058.tar.gz chromium_src-26f025e36b53b7691dc6cc2eb4db15b225418058.tar.bz2 |
Convert chrome/common non-debug logs to debug logs.
Review URL: http://codereview.chromium.org/8368018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107814 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/extension_l10n_util.cc')
-rw-r--r-- | chrome/common/extensions/extension_l10n_util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/extensions/extension_l10n_util.cc b/chrome/common/extensions/extension_l10n_util.cc index a8ec5e6..b4e14b3 100644 --- a/chrome/common/extensions/extension_l10n_util.cc +++ b/chrome/common/extensions/extension_l10n_util.cc @@ -165,8 +165,8 @@ bool AddLocale(const std::set<std::string>& chrome_locales, if (chrome_locales.find(locale_name) == chrome_locales.end()) { // Warn if there is an extension locale that's not in the Chrome list, // but don't fail. - LOG(WARNING) << base::StringPrintf("Supplied locale %s is not supported.", - locale_name.c_str()); + DLOG(WARNING) << base::StringPrintf("Supplied locale %s is not supported.", + locale_name.c_str()); return true; } // Check if messages file is actually present (but don't check content). |