Index: cloud_print/virtual_driver/win/install/setup.cc |
diff --git a/cloud_print/virtual_driver/win/install/setup.cc b/cloud_print/virtual_driver/win/install/setup.cc |
index 6e0df245a73e9f446492d375ffe188bbbdf630ce..1c87ca200a4e93536040b087720674dd47cc9452 100644 |
--- a/cloud_print/virtual_driver/win/install/setup.cc |
+++ b/cloud_print/virtual_driver/win/install/setup.cc |
@@ -97,7 +97,7 @@ void SpoolerServiceCommand(const char* command) { |
base::LaunchOptions options; |
options.wait = true; |
options.start_hidden = true; |
- LOG(INFO) << command_line.GetCommandLineString(); |
+ VLOG(0) << command_line.GetCommandLineString(); |
base::LaunchProcess(command_line, options, NULL); |
} |
@@ -140,7 +140,8 @@ HRESULT RegisterPortMonitor(bool install, const base::FilePath& install_path) { |
options.wait = true; |
base::win::ScopedHandle regsvr32_handle; |
- if (!base::LaunchProcess(command_line, options, regsvr32_handle.Receive())) { |
+ if (!base::LaunchProcess(command_line.GetCommandLineString(), options, |
+ ®svr32_handle)) { |
LOG(ERROR) << "Unable to launch regsvr32.exe."; |
return HRESULT_FROM_WIN32(ERROR_NOT_SUPPORTED); |
} |
@@ -540,8 +541,8 @@ int WINAPI WinMain(__in HINSTANCE hInstance, |
CommandLine::Init(0, NULL); |
HRESULT retval = cloud_print::ExecuteCommands(); |
- LOG(INFO) << _com_error(retval).ErrorMessage() << " HRESULT=0x" << |
- std::setbase(16) << retval; |
+ VLOG(0) << _com_error(retval).ErrorMessage() << " HRESULT=0x" << |
+ std::setbase(16) << retval; |
// Installer is silent by default as required by Google Update. |
if (CommandLine::ForCurrentProcess()->HasSwitch("verbose")) { |