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

Unified Diff: courgette/encoded_program.cc

Issue 3904002: Convert LOG(INFO) to VLOG(1) - courgette/. (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 | « courgette/disassembler.cc ('k') | courgette/ensemble_create.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/encoded_program.cc
===================================================================
--- courgette/encoded_program.cc (revision 63075)
+++ courgette/encoded_program.cc (working copy)
@@ -233,16 +233,16 @@
}
void EncodedProgram::DebuggingSummary() {
- LOG(INFO) << "EncodedProgram Summary";
- LOG(INFO) << " image base " << image_base_;
- LOG(INFO) << " abs32 rvas " << abs32_rva_.size();
- LOG(INFO) << " rel32 rvas " << rel32_rva_.size();
- LOG(INFO) << " ops " << ops_.size();
- LOG(INFO) << " origins " << origins_.size();
- LOG(INFO) << " copy_counts " << copy_counts_.size();
- LOG(INFO) << " copy_bytes " << copy_bytes_.size();
- LOG(INFO) << " abs32_ix " << abs32_ix_.size();
- LOG(INFO) << " rel32_ix " << rel32_ix_.size();
+ VLOG(1) << "EncodedProgram Summary\n"
+ << " image base " << image_base_
sra1 2010/10/21 00:08:49 You could put it back one per line, or if you don'
+ << "\n abs32 rvas " << abs32_rva_.size()
+ << "\n rel32 rvas " << rel32_rva_.size()
+ << "\n ops " << ops_.size()
+ << "\n origins " << origins_.size()
+ << "\n copy_counts " << copy_counts_.size()
+ << "\n copy_bytes " << copy_bytes_.size()
+ << "\n abs32_ix " << abs32_ix_.size()
+ << "\n rel32_ix " << rel32_ix_.size();
}
////////////////////////////////////////////////////////////////////////////////
« no previous file with comments | « courgette/disassembler.cc ('k') | courgette/ensemble_create.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698