summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorgene@google.com <gene@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-29 21:43:34 +0000
committergene@google.com <gene@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-29 21:43:34 +0000
commit4337a8ad2f89a8fe3baf53e45c9103506e00c750 (patch)
treeb8f99a963bd3396f1aab1c10e786491bf9a55f68 /chrome
parent9f463b0e52b26505bfb083ae1fa4efa6986b9fc1 (diff)
downloadchromium_src-4337a8ad2f89a8fe3baf53e45c9103506e00c750.zip
chromium_src-4337a8ad2f89a8fe3baf53e45c9103506e00c750.tar.gz
chromium_src-4337a8ad2f89a8fe3baf53e45c9103506e00c750.tar.bz2
Change LOG(INFO) to VLOG(1).
BUG=none TEST=none Review URL: http://codereview.chromium.org/4105007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64491 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/service/cloud_print/print_system_cups.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/service/cloud_print/print_system_cups.cc b/chrome/service/cloud_print/print_system_cups.cc
index 12548af..45d1803 100644
--- a/chrome/service/cloud_print/print_system_cups.cc
+++ b/chrome/service/cloud_print/print_system_cups.cc
@@ -270,11 +270,11 @@ bool PrintSystemCUPS::GetJobDetails(const std::string& printer_name,
}
if (found)
- LOG(INFO) << "CP_CUPS: Job details for: " << printer_name <<
- " job_id: " << job_id << " job status: " << job_details->status;
+ VLOG(1) << "CP_CUPS: Job details for: " << printer_name
+ << " job_id: " << job_id << " job status: " << job_details->status;
else
- LOG(WARNING) << "CP_CUPS: Job not found for: " << printer_name <<
- " job_id: " << job_id;
+ LOG(WARNING) << "CP_CUPS: Job not found for: " << printer_name
+ << " job_id: " << job_id;
cupsFreeJobs(num_jobs, jobs);
return found;
@@ -284,7 +284,7 @@ bool PrintSystemCUPS::GetPrinterInfo(const std::string& printer_name,
printing::PrinterBasicInfo* info) {
DCHECK(info);
- LOG(INFO) << "CP_CUPS: Getting printer info for: " << printer_name;
+ VLOG(1) << "CP_CUPS: Getting printer info for: " << printer_name;
// This is not very efficient way to get specific printer info. CUPS 1.4
// supports cupsGetNamedDest() function. However, CUPS 1.4 is not available
@@ -365,7 +365,7 @@ PlatformJobId PrintSystemCUPS::SpoolPrintJob(
const std::string& print_data_mime_type,
const std::string& printer_name,
const std::string& job_title) {
- LOG(INFO) << "CP_CUPS: Spooling print job for: " << printer_name;
+ VLOG(1) << "CP_CUPS: Spooling print job for: " << printer_name;
// We need to store options as char* string for the duration of the
// cupsPrintFile2 call. We'll use map here to store options, since
@@ -389,7 +389,7 @@ PlatformJobId PrintSystemCUPS::SpoolPrintJob(
cups_options.size(),
&(cups_options[0]));
- LOG(INFO) << "CP_CUPS: Job spooled, id: " << job_id;
+ VLOG(1) << "CP_CUPS: Job spooled, id: " << job_id;
return job_id;
}