We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RUST_LOG
1 parent 1b86b33 commit a3f8ccdCopy full SHA for a3f8ccd
Makefile
@@ -6,6 +6,7 @@ export PGUSER ?= postgres
6
export PGPASSWORD ?= password
7
export PGDATABASE ?= sample
8
export DATABASE_URL ?= postgres://$(PGUSER):$(PGPASSWORD)@$(PGHOST):$(PGPORT)/$(PGDATABASE)
9
+export RUST_LOG ?= rust_graphql_sample=debug,tower_http=debug
10
11
prepare-db: start-db
12
@sqlx database create
@@ -18,4 +19,4 @@ stop-db:
18
19
@scripts/stop-db.sh
20
21
run: start-db prepare-db
- @RUST_LOG=rust_graphql_sample=debug,tower_http=debug cargo run
22
+ @cargo run
0 commit comments