Skip to content

Commit 55e74c2

Browse files
committed
More debug
1 parent 9f6d586 commit 55e74c2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

SpiNNaker-comms/src/main/java/uk/ac/manchester/spinnaker/connections/ThrottledConnection.java

+5
Original file line numberDiff line numberDiff line change
@@ -151,4 +151,9 @@ public void close() {
151151
public ChipLocation getLocation() {
152152
return connection.getChip();
153153
}
154+
155+
@Override
156+
public String toString() {
157+
return "Throttled: " + connection.toString();
158+
}
154159
}

SpiNNaker-comms/src/main/java/uk/ac/manchester/spinnaker/protocols/FastDataIn.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ public void close() throws IOException {
149149
public void fastWrite(HasChipLocation boardLocalDestination,
150150
MemoryLocation baseAddress, ByteBuffer data)
151151
throws IOException, InterruptedException {
152-
log.info("Fast writing to board relative location "
152+
log.info("Fast writing via " + gathererCore + ": " + connection
153+
+ " to board relative location "
153154
+ boardLocalDestination + " address " + baseAddress
154155
+ " " + data.remaining() + " bytes");
155156
int timeoutCount = 0;

0 commit comments

Comments
 (0)