You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,7 @@ HTTP APIs and Tools are available at the following port and paths:
58
58
- Lab: `http://localhost:8000/lab`
59
59
- Friendbot: `http://localhost:8000/friendbot`
60
60
- Ledger Meta: `http://localhost:8000/ledger-meta` (available with `--local` and `--enable galexie`)
61
+
- History Archive: `http://localhost:8000/archive` (available with `--local` only)
61
62
62
63
## Tags
63
64
@@ -166,6 +167,45 @@ To enable [Stellar Lab](https://github.com/stellar/laboratory) which will use th
166
167
167
168
**Note: In `--local` mode the `core` service always runs no matter what options are passed, the `friendbot` faucet service runs whenever `horizon` is running, and `horizon` is run when `rpc` is requested so that friendbot is available.**
168
169
170
+
### Core Options
171
+
172
+
#### `--core-log-level`
173
+
174
+
Set Stellar Core's log level at startup. Valid values are (case-sensitive):
175
+
176
+
| Level | Description |
177
+
| ----- | ----------- |
178
+
| FATAL | Only log fatal errors |
179
+
| ERROR | Log errors and above |
180
+
| WARNING | Log warnings and above |
181
+
| INFO | Log info and above |
182
+
| DEBUG | Log debug and above (default for `--local`) |
183
+
| TRACE | Log everything (very verbose) |
184
+
185
+
Example:
186
+
187
+
```shell
188
+
docker run -p "8000:8000" stellar/quickstart --local --core-log-level DEBUG
189
+
```
190
+
191
+
For more granular control over specific subsystems, you can use Stellar Core's HTTP command interface on port 11626. First, expose the port:
192
+
193
+
```shell
194
+
docker run -p "8000:8000" -p "11626:11626" stellar/quickstart --local
Stellar Lab is an interactive toolkit for exploring and interacting with the Stellar network. It allows developers to build, sign, simulate, and submit transactions, and to make requests to both the Friendbot, RPC, and Horizon APIs. Lab is also built-in to Quickstart.
@@ -230,6 +270,7 @@ The action supports several configuration options. None are required and default
0 commit comments