Skip to content

Commit 332baeb

Browse files
committed
add missing code font
1 parent 2c47c8c commit 332baeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/pages/learn/01_tutorial/08_more-resources/02_debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ When first learning how to code, we often write code like this to see what is go
3939
System.out.println(numCats);
4040
```
4141

42-
There's nothing wrong with using `println` (as long as you don't commit it). However, it can quickly get unmanagable in a more complicated program especally if you have multiple things to keep track of or a lot of loops. It can also be hard to find when there is a lot of logging in the application. (I used the stars and my initials to mitigate that, but still can get past the point where println is useful.)
42+
There's nothing wrong with using `println` (as long as you don't commit it). However, it can quickly get unmanagable in a more complicated program especally if you have multiple things to keep track of or a lot of loops. It can also be hard to find when there is a lot of logging in the application. (I used the stars and my initials to mitigate that, but still can get past the point where `println` is useful.)
4343

4444
```java
4545
System.out.println("*** JB i=%s numCats=%s numDogs=%s".formatted(i, numCats, numDogs));

0 commit comments

Comments
 (0)