Jenkins: reduce the local testnet's log level (#852)

This commit is contained in:
Ștefan Talpalaru 2020-04-02 10:58:03 +02:00 committed by GitHub
parent 57ec29062e
commit 708ac80dae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -31,8 +31,8 @@ def runStages() {
}
if ("${NODE_NAME}" ==~ /linux.*/) {
stage("testnet finalization") {
sh "./scripts/launch_local_testnet.sh --testnet 0 --nodes 4 --disable-htop -- --verify-finalization --stop-at-epoch=5"
sh "./scripts/launch_local_testnet.sh --testnet 1 --nodes 4 --disable-htop -- --verify-finalization --stop-at-epoch=5"
sh "./scripts/launch_local_testnet.sh --testnet 0 --nodes 4 --log-level INFO --disable-htop -- --verify-finalization --stop-at-epoch=5"
sh "./scripts/launch_local_testnet.sh --testnet 1 --nodes 4 --log-level INFO --disable-htop -- --verify-finalization --stop-at-epoch=5"
}
}
}