Change the default log level to INFO

This commit is contained in:
Zahary Karadjov 2020-11-09 10:12:48 +02:00 committed by zah
parent e9b9cd75ee
commit 4b603d7f5a
2 changed files with 7 additions and 6 deletions

View File

@ -37,7 +37,7 @@ type
BeaconNodeConf* = object
logLevel* {.
defaultValue: "DEBUG"
defaultValue: "INFO"
desc: "Sets the log level"
name: "log-level" }: string
@ -158,7 +158,7 @@ type
graffiti* {.
desc: "The graffiti value that will appear in proposed blocks. " &
"You can use a 0x-prefixed hex encoded string to specify raw bytes."
"You can use a 0x-prefixed hex encoded string to specify raw bytes"
name: "graffiti" }: Option[GraffitiBytes]
verifyFinalization* {.
@ -354,8 +354,8 @@ type
ValidatorClientConf* = object
logLevel* {.
defaultValue: "DEBUG"
desc: "Sets the log level."
defaultValue: "INFO"
desc: "Sets the log level"
name: "log-level" }: string
logFile* {.
@ -387,7 +387,7 @@ type
of VCNoCommand:
graffiti* {.
desc: "The graffiti value that will appear in proposed blocks. " &
"You can use a 0x-prefixed hex encoded string to specify raw bytes."
"You can use a 0x-prefixed hex encoded string to specify raw bytes"
name: "graffiti" }: Option[GraffitiBytes]
stopAtEpoch* {.

View File

@ -23,6 +23,7 @@ rm -rf "dist/${PREFIX}"*.tar.gz
if [[ -d "${DIST_PATH}" ]]; then
rm -rf "${DIST_PATH}"
fi
mkdir -p "${DIST_PATH}"
mkdir "${DIST_PATH}/scripts"
mkdir "${DIST_PATH}/build"
@ -36,7 +37,7 @@ for BINARY in ${BINARIES}; do
cd - >/dev/null
done
sed -e "s/GIT_COMMIT/${GIT_COMMIT}/" docker/dist/README.md > "${DIST_PATH}/README.md"
cp -a scripts/makedir.sh scripts/run-beacon-node.sh "${DIST_PATH}/scripts"
cp -a scripts/run-beacon-node.sh "${DIST_PATH}/scripts"
cp -a ./run-*-beacon-node.sh "${DIST_PATH}/"
#cp -a docs/the_nimbus_book "${DIST_PATH}/"