Makefile: specify the Chronicles log level

This commit is contained in:
Ștefan Talpalaru 2019-03-11 20:45:46 +01:00 committed by zah
parent c8db2d9268
commit fba31263d4
2 changed files with 14 additions and 1 deletions

View File

@ -25,14 +25,20 @@ RUN_CMD_IN_ALL_REPOS = git submodule foreach --recursive --quiet 'echo -e "\n\e[
ENV_SCRIPT := "$(CURDIR)/env.sh"
# duplicated in "env.sh" to prepend NIM_DIR/bin to PATH
NIM_DIR := vendor/Nim
# extra parameters for the Nim compiler
NIM_PARAMS :=
# verbosity level
V := 1
NIM_PARAMS := --verbosity:$(V)
NIM_PARAMS := $(NIM_PARAMS) --verbosity:$(V)
HANDLE_OUTPUT :=
ifeq ($(V), 0)
NIM_PARAMS := $(NIM_PARAMS) --hints:off --warnings:off
HANDLE_OUTPUT := &>/dev/null
endif
# Chronicles log level
LOG_LEVEL := DEBUG
NIM_PARAMS := $(NIM_PARAMS) -d:chronicles_log_level=$(LOG_LEVEL)
#- forces a rebuild of csources, Nimble and a complete compiler rebuild, in case we're called after pulling a new Nim version
#- uses our Git submodules for csources and Nimble (Git doesn't let us place them in another submodule)
#- build_all.sh looks at the parent dir to decide whether to copy the resulting csources binary there,

View File

@ -108,6 +108,13 @@ make V=0 # quiet
make V=2 test # more verbose than usual
```
- same for the [Chronicles log level](https://github.com/status-im/nim-chronicles#chronicles_log_level):
```bash
make LOG_LEVEL=DEBUG nimbus # this is the default
make LOG_LEVEL=TRACE nimbus # log everything
```
- if you want to use SSH keys with GitHub:
```bash