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() {
33
33
if (matcher .matches ()) {
34
34
Integer a = Integer .valueOf (matcher .group (1 ));
35
35
Integer b = Integer .valueOf (matcher .group (2 ));
36
- LOGGER .info ("Reading: {} and {}" , a , b );
36
+ LOGGER .debug ("Reading: {} and {}" , a , b );
37
37
left .add (a );
38
38
right .add (b );
39
39
} else {
@@ -56,7 +56,7 @@ public long solvePart2() {
56
56
if (matcher .matches ()) {
57
57
Long a = Long .valueOf (matcher .group (1 ));
58
58
Long b = Long .valueOf (matcher .group (2 ));
59
- LOGGER .info ("Reading: {} and {}" , a , b );
59
+ LOGGER .debug ("Reading: {} and {}" , a , b );
60
60
left .compute (a , (k , v ) -> (v == null ) ? 1 : v + 1 );
61
61
right .compute (b , (k , v ) -> (v == null ) ? 1 : v + 1 );
62
62
} else {
You can’t perform that action at this time.
0 commit comments