From b1b6ada4bc2f04475a223223e2910e23c7efb04f Mon Sep 17 00:00:00 2001
From: Jason Hiser <jdh8d@virginia.edu>
Date: Tue, 25 Dec 2018 05:15:46 -0800
Subject: [PATCH] disabled over-verbose output

---
 src/elfwrite.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/elfwrite.cpp b/src/elfwrite.cpp
index 69d9e81..89e68b2 100644
--- a/src/elfwrite.cpp
+++ b/src/elfwrite.cpp
@@ -126,7 +126,7 @@ void ElfWriter::CreatePagemap(const ELFIO::elfio *elfiop, FileIR_t* firp, const
 				virtual_offset_t offset=i+j-start_addr;
 				if(offset<scoop->GetContents().size())
 				{
-					cout<<"Updating page["<<hex<<i<<"+"<<j<<"("<<(i+j)<<")]="<<hex<<(int)scoop->GetContents()[ offset ]<<endl; 
+					// cout<<"Updating page["<<hex<<i<<"+"<<j<<"("<<(i+j)<<")]="<<hex<<(int)scoop->GetContents()[ offset ]<<endl; 
 					pagemap_i.data[j]=scoop->GetContents()[ offset ]; 
 					pagemap_i.inuse[j]=true;
 				}
-- 
GitLab