mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-12-02 05:57:21 +01:00
Add --debug option to enable debug log level in brizo and events-handler, other components can be added to this later.
This commit is contained in:
parent
afe72132e2
commit
976e2daf7a
@ -66,7 +66,7 @@ The default versions are always a combination of component versions which are co
|
||||
|
||||
| Aquarius | Brizo | Events Handler | Keeper | Pleuston | Faucet |
|
||||
| -------- | -------- | -------------- | --------- | -------- | -------- |
|
||||
| `v0.3.8` | `v0.4.2` | `v0.1.2` | `v0.11.1` | `v0.5.1` | `v0.2.6` |
|
||||
| `v0.3.8` | `v0.4.4` | `v0.1.2` | `v0.11.1` | `v0.5.1` | `v0.2.6` |
|
||||
|
||||
You can use the `--latest` option to pull the most recent Docker images for all components, which are always tagged as `latest` in Docker. The `latest` Docker image tag derives from the default main branch of the component's Git repo.
|
||||
|
||||
|
@ -172,6 +172,13 @@ DOCKER_COMPOSE_EXTRA_OPTS="${DOCKER_COMPOSE_EXTRA_OPTS:-}"
|
||||
while :; do
|
||||
case $1 in
|
||||
#################################################
|
||||
# Log level
|
||||
#################################################
|
||||
--debug)
|
||||
export BRIZO_LOG_LEVEL="DEBUG"
|
||||
export EVENTS_HANDLER_LOG_LEVEL="DEBUG"
|
||||
;;
|
||||
#################################################
|
||||
# Disable color
|
||||
#################################################
|
||||
--no-ansi)
|
||||
|
Loading…
Reference in New Issue
Block a user