Skip to content

Commit

Permalink
test verbose docker error (#37)
Browse files Browse the repository at this point in the history
test verbose docker error
  • Loading branch information
wanwiset25 authored Jan 19, 2024
1 parent 22c2c59 commit 8f5307b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/FullCheckpointDeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async function main() {
try {
full = await checkpointFactory.deploy();
} catch (e) {
console.log(e)
console.error(e, "\n")
throw Error(
"deploy to parentnet node failure , pls check the parentnet node status"
);
Expand Down
2 changes: 1 addition & 1 deletion scripts/LiteCheckpointDeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function main() {
try {
lite = await checkpointFactory.deploy();
} catch (e) {
console.log(e)
console.error(e, "\n")
throw Error(
"deploy to parentnet node failure , pls check the parentnet node status"
);
Expand Down
2 changes: 1 addition & 1 deletion scripts/proxy/ProxyGatewayDeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ async function main() {
try {
proxyGateway = await proxyGatewayFactory.deploy();
} catch (e) {
console.log(e)
console.error(e, "\n")
throw Error(
"deploy to parentnet node failure , pls check the parentnet node status"
);
Expand Down
2 changes: 1 addition & 1 deletion scripts/proxy/UpgradeCSC.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function main() {
try {
full = await fullFactory.deploy();
} catch (e) {
console.log(e)
console.error(e, "\n")
throw Error(
"deploy to parentnet node failure , pls check the parentnet node status"
);
Expand Down
1 change: 1 addition & 0 deletions scripts/utils/subnet.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ async function data() {
data0 = await block0res.json();
data1 = await block1res.json();
} catch (e) {
console.error(e, "\n")
throw Error(
"Fetch remote subnet node data error , pls check the subnet node status"
);
Expand Down

0 comments on commit 8f5307b

Please sign in to comment.