Change the default log level to INFO
This commit is contained in:
parent
e9b9cd75ee
commit
4b603d7f5a
|
@ -37,7 +37,7 @@ type
|
||||||
|
|
||||||
BeaconNodeConf* = object
|
BeaconNodeConf* = object
|
||||||
logLevel* {.
|
logLevel* {.
|
||||||
defaultValue: "DEBUG"
|
defaultValue: "INFO"
|
||||||
desc: "Sets the log level"
|
desc: "Sets the log level"
|
||||||
name: "log-level" }: string
|
name: "log-level" }: string
|
||||||
|
|
||||||
|
@ -158,7 +158,7 @@ type
|
||||||
|
|
||||||
graffiti* {.
|
graffiti* {.
|
||||||
desc: "The graffiti value that will appear in proposed blocks. " &
|
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]
|
name: "graffiti" }: Option[GraffitiBytes]
|
||||||
|
|
||||||
verifyFinalization* {.
|
verifyFinalization* {.
|
||||||
|
@ -354,8 +354,8 @@ type
|
||||||
|
|
||||||
ValidatorClientConf* = object
|
ValidatorClientConf* = object
|
||||||
logLevel* {.
|
logLevel* {.
|
||||||
defaultValue: "DEBUG"
|
defaultValue: "INFO"
|
||||||
desc: "Sets the log level."
|
desc: "Sets the log level"
|
||||||
name: "log-level" }: string
|
name: "log-level" }: string
|
||||||
|
|
||||||
logFile* {.
|
logFile* {.
|
||||||
|
@ -387,7 +387,7 @@ type
|
||||||
of VCNoCommand:
|
of VCNoCommand:
|
||||||
graffiti* {.
|
graffiti* {.
|
||||||
desc: "The graffiti value that will appear in proposed blocks. " &
|
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]
|
name: "graffiti" }: Option[GraffitiBytes]
|
||||||
|
|
||||||
stopAtEpoch* {.
|
stopAtEpoch* {.
|
||||||
|
|
|
@ -23,6 +23,7 @@ rm -rf "dist/${PREFIX}"*.tar.gz
|
||||||
if [[ -d "${DIST_PATH}" ]]; then
|
if [[ -d "${DIST_PATH}" ]]; then
|
||||||
rm -rf "${DIST_PATH}"
|
rm -rf "${DIST_PATH}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p "${DIST_PATH}"
|
mkdir -p "${DIST_PATH}"
|
||||||
mkdir "${DIST_PATH}/scripts"
|
mkdir "${DIST_PATH}/scripts"
|
||||||
mkdir "${DIST_PATH}/build"
|
mkdir "${DIST_PATH}/build"
|
||||||
|
@ -36,7 +37,7 @@ for BINARY in ${BINARIES}; do
|
||||||
cd - >/dev/null
|
cd - >/dev/null
|
||||||
done
|
done
|
||||||
sed -e "s/GIT_COMMIT/${GIT_COMMIT}/" docker/dist/README.md > "${DIST_PATH}/README.md"
|
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 ./run-*-beacon-node.sh "${DIST_PATH}/"
|
||||||
#cp -a docs/the_nimbus_book "${DIST_PATH}/"
|
#cp -a docs/the_nimbus_book "${DIST_PATH}/"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue