Commit f8756fb4 authored by isherman@chromium.org's avatar isherman@chromium.org

Add logging for submitted Autofill field types.

BUG=none
TEST=Run Chromium with commandline flag --vmodule="form_structure=2", Autofill a form, submit it.


Review URL: http://codereview.chromium.org/7984001

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102084 0039d316-1c4b-4281-b951-d872f2087c98
parent 80a91d77
...@@ -355,6 +355,9 @@ bool FormStructure::EncodeUploadRequest( ...@@ -355,6 +355,9 @@ bool FormStructure::EncodeUploadRequest(
*encoded_xml = kXMLDeclaration; *encoded_xml = kXMLDeclaration;
*encoded_xml += autofill_request_xml.Str().c_str(); *encoded_xml += autofill_request_xml.Str().c_str();
// To enable this logging, run with the flag --vmodule="form_structure=2".
VLOG(2) << "\n" << *encoded_xml;
return true; return true;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment