feat: add logging to server fixture (#903)

This commit is contained in:
Hendrik Eeckhaut
2025-06-04 08:49:33 +02:00
committed by GitHub
parent 24e10d664f
commit fa2fdfd601
7 changed files with 67 additions and 22 deletions

View File

@@ -13,7 +13,7 @@ Before starting the notarization, set up the local test server and local notary.
1. Run the test server:
```shell
PORT=4000 cargo run --bin tlsn-server-fixture
RUST_LOG=info PORT=4000 cargo run --bin tlsn-server-fixture
```
2. Run the notary server:
```shell

View File

@@ -4,7 +4,7 @@ This example demonstrates how to use TLSNotary in a simple interactive session b
This example fetches data from a local test server. To start this server, run:
```shell
PORT=4000 cargo run --bin tlsn-server-fixture
RUST_LOG=info PORT=4000 cargo run --bin tlsn-server-fixture
```
Next, run the interactive example with:
```shell