Skip to content

chore: updates java config to downgrade logging to WARN; updates run command for simpler output #614

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lesson_26/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ We are continuing to build atop the foundation of our library app. For this assi

#### Running the API

You can run the server using the usual `./gradlew run` command from the `api/java` directory. If you want to test that the server is running correctly, you can use `curl` like so:
You can run the server using the usual `./gradlew run --console=plain` command from the `api/java` directory. If you want to test that the server is running correctly, you can use `curl` like so:

```bash
curl http://localhost:3001/items | json_pp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ spring:
generate-ddl: true
datasource:
url: jdbc:sqlite::resource:sqlite/data.db
driver-class-name: org.sqlite.JDBC
driver-class-name: org.sqlite.JDBC
logging:
level:
root: WARN
org.springframework: WARN
Loading