| Index: chrome/browser/translate/chrome_translate_client.cc
|
| diff --git a/chrome/browser/translate/chrome_translate_client.cc b/chrome/browser/translate/chrome_translate_client.cc
|
| index 9356f448190ebb6efe00e04fbf7d5a4baa9ad1e2..83f764a1b577f757250b2325a8ecb738bdca7a57 100644
|
| --- a/chrome/browser/translate/chrome_translate_client.cc
|
| +++ b/chrome/browser/translate/chrome_translate_client.cc
|
| @@ -67,7 +67,7 @@ ChromeTranslateClient::ChromeTranslateClient(content::WebContents* web_contents)
|
| // CLD data immediately on startup.
|
| if (translate::CldDataSource::ShouldUseStandaloneDataFile() &&
|
| !g_cld_file_path_initialized_) {
|
| - VLOG(1) << "Initializing CLD file path for the first time.";
|
| + DVLOG(1) << "Initializing CLD file path for the first time.";
|
| base::FilePath path;
|
| if (!PathService::Get(chrome::DIR_USER_DATA, &path)) {
|
| // Chrome isn't properly installed
|
| @@ -75,7 +75,7 @@ ChromeTranslateClient::ChromeTranslateClient(content::WebContents* web_contents)
|
| } else {
|
| g_cld_file_path_initialized_ = true;
|
| path = path.Append(kCldDataFileName);
|
| - VLOG(1) << "Setting CLD data file path: " << path.value();
|
| + DVLOG(1) << "Setting CLD data file path: " << path.value();
|
| translate::SetCldDataFilePath(path);
|
| }
|
| }
|
|
|