Chip Data XML for TOD fault errors

Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: I92fbf438f6efd167c9e83ca4a861fa3ac00547c5
diff --git a/test/simulator/simulator.cpp b/test/simulator/simulator.cpp
index 6bc3106..bca2b99 100644
--- a/test/simulator/simulator.cpp
+++ b/test/simulator/simulator.cpp
@@ -79,8 +79,7 @@
     IsolationData isoData{};
     isolate(iv_chipList, isoData);
 
-    /* TODO: Currently used for debug. Eventually, we want this and the
-     *       signature list written to file.
+    /* TODO: Currently used for debug. Eventually, we want this written to file.
     for (const auto& e : isoData.getRegisterDump())
     {
         HEI_INF("Chip: %s", (const char*)e.first.getChip());
@@ -102,6 +101,15 @@
     std::sort(iv_expSigList.begin(), iv_expSigList.end());
     std::sort(givenSigList.begin(), givenSigList.end());
 
+    /* TODO: Currently used for debug. Eventually, we want this written to file.
+    for (const auto& s : givenSigList)
+    {
+        HEI_INF("Signature: %s 0x%04x %u %u %u",
+                (const char*)s.getChip().getChip(), s.getId(), s.getInstance(),
+                s.getBit(), s.getAttnType());
+    }
+    */
+
     ASSERT_TRUE(std::equal(givenSigList.begin(), givenSigList.end(),
                            iv_expSigList.begin()));