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

Unified Diff: chrome/test/webdriver/dispatch.h

Issue 3915004: Convert LOG(INFO) to VLOG(1) - chrome/test/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 2 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/test/webdriver/commands/webdriver_command.cc ('k') | chrome/test/webdriver/dispatch.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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, &parameters, &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);
« no previous file with comments | « chrome/test/webdriver/commands/webdriver_command.cc ('k') | chrome/test/webdriver/dispatch.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698