Index: chrome/test/webdriver/dispatch.h |
=================================================================== |
--- chrome/test/webdriver/dispatch.h (revision 63075) |
+++ chrome/test/webdriver/dispatch.h (working copy) |
@@ -54,7 +54,7 @@ |
DictionaryValue* parameters = NULL; |
if ((method == "POST" || method == "PUT") && |
request_info->post_data_len > 0) { |
- LOG(INFO) << "...parsing request body"; |
+ VLOG(1) << "...parsing request body"; |
std::string json(request_info->post_data, request_info->post_data_len); |
std::string error; |
if (!ParseJSONDictionary(json, ¶meters, &error)) { |
@@ -66,9 +66,8 @@ |
} |
} |
- LOG(INFO) << "Dispatching " << method << " " << uri |
- << std::string(request_info->post_data, |
- request_info->post_data_len) << std::endl; |
+ VLOG(1) << "Dispatching " << method << " " << uri |
+ << std::string(request_info->post_data, request_info->post_data_len); |
scoped_ptr<CommandType> ptr(new CommandType(path_segments, parameters)); |
DispatchCommand(ptr.get(), method, &response); |
SendResponse(connection, request_info, response); |