mem: fix printing of 1st cache tags line
authorBjoern A. Zeeb <baz21@cam.ac.uk>
Sat, 11 Feb 2017 16:11:48 +0000 (11:11 -0500)
committerBjoern A. Zeeb <baz21@cam.ac.uk>
Sat, 11 Feb 2017 16:11:48 +0000 (11:11 -0500)
Rather than having the 1st line on the Log line and every other line on its
own, add a new line to have a common format for all of them.  Makes parsing
a lot easier.

Reviewed at http://reviews.gem5.org/r/3808/

Signed-off-by: Jason Lowe-Power <jason@lowepower.com>
src/mem/cache/cache.cc

index 9079606cf11bdbb17b00d1d5a663ca86e2692b3a..b4d583eb878437cbaf4b9c8ef2a19b528cb81524 100644 (file)
@@ -585,7 +585,7 @@ Cache::promoteWholeLineWrites(PacketPtr pkt)
 bool
 Cache::recvTimingReq(PacketPtr pkt)
 {
-    DPRINTF(CacheTags, "%s tags: %s\n", __func__, tags->print());
+    DPRINTF(CacheTags, "%s tags:\n%s\n", __func__, tags->print());
 
     assert(pkt->isRequest());