Chromium Code Reviews| 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(); |
| } |
| //////////////////////////////////////////////////////////////////////////////// |