Skip to content

Commit 680c494

Browse files
committed
Improved debug output
1 parent d9d946d commit 680c494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/net/teamio/taam/conveyors/api/ProcessingRegistry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public static void registerRecipe(int machine, IProcessingRecipe recipe) {
101101
Log.debug("First recipe for this item.");
102102
matches = new IProcessingRecipe[1];
103103
} else {
104-
Log.debug(matches.length + ". recipe for this item.");
104+
Log.debug((matches.length + 1) + ". recipe for this item.");
105105
matches = Arrays.copyOf(matches, matches.length + 1);
106106
}
107107
matches[matches.length - 1] = recipe;

0 commit comments

Comments
 (0)