Skip to content

Commit 08125f8

Browse files
author
dominic.abruzzo
committed
fix formatting exception
1 parent 4a20842 commit 08125f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/network/aika/storage/FSSuspensionCallbackImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public synchronized void store(Integer id, byte[] data) throws IOException {
106106
public synchronized byte[] retrieve(Integer id) throws IOException {
107107
long[] pos = index.get(id);
108108
if(pos == null)
109-
throw new MissingNodeException(String.format("Neuron with id %d is missing in model label %d", id, modelLabel));
109+
throw new MissingNodeException(String.format("Neuron with id %d is missing in model label %s", id, modelLabel));
110110

111111
byte[] data = new byte[(int)pos[1]];
112112

0 commit comments

Comments
 (0)