Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1050)

Unified Diff: chrome/renderer/translate_helper.cc

Issue 10831264: Changing VLOG from level 1 to 9 for text to be translated. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changing more VLOGs, forgot about the helper initially. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/translate/translate_manager.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/translate_helper.cc
diff --git a/chrome/renderer/translate_helper.cc b/chrome/renderer/translate_helper.cc
index 4c63436c860be9bf3f1573cd3b88a992f2fca2e7..fcbc3c7bd5cee7a114f82532a5b62581e5b1f55a 100644
--- a/chrome/renderer/translate_helper.cc
+++ b/chrome/renderer/translate_helper.cc
@@ -69,7 +69,7 @@ void TranslateHelper::PageCaptured(const string16& contents) {
UMA_HISTOGRAM_MEDIUM_TIMES("Renderer4.LanguageDetection",
base::TimeTicks::Now() - begin_time);
} else {
- VLOG(1) << "PageLanguageFromMetaTag: " << language;
+ VLOG(9) << "PageLanguageFromMetaTag: " << language;
}
Send(new ChromeViewHostMsg_TranslateLanguageDetermined(
@@ -160,7 +160,7 @@ std::string TranslateHelper::DetermineTextLanguage(const string16& text) {
// for Simplified Chinese.
language = LanguageCodeWithDialects(cld_language);
}
- VLOG(1) << "Detected lang_id: " << language << ", from Text:\n" << text
+ VLOG(9) << "Detected lang_id: " << language << ", from Text:\n" << text
rvargas (doing something else) 2012/08/10 19:11:30 Actually, I would still want to understand why are
<< "\n*************************************\n";
return language;
}
« no previous file with comments | « chrome/browser/translate/translate_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698