File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/aminetti/adventofcode2024/day01 Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public long solvePart1() {
3333 if (matcher .matches ()) {
3434 Integer a = Integer .valueOf (matcher .group (1 ));
3535 Integer b = Integer .valueOf (matcher .group (2 ));
36- LOGGER .info ("Reading: {} and {}" , a , b );
36+ LOGGER .debug ("Reading: {} and {}" , a , b );
3737 left .add (a );
3838 right .add (b );
3939 } else {
@@ -56,7 +56,7 @@ public long solvePart2() {
5656 if (matcher .matches ()) {
5757 Long a = Long .valueOf (matcher .group (1 ));
5858 Long b = Long .valueOf (matcher .group (2 ));
59- LOGGER .info ("Reading: {} and {}" , a , b );
59+ LOGGER .debug ("Reading: {} and {}" , a , b );
6060 left .compute (a , (k , v ) -> (v == null ) ? 1 : v + 1 );
6161 right .compute (b , (k , v ) -> (v == null ) ? 1 : v + 1 );
6262 } else {
You can’t perform that action at this time.
0 commit comments