From 7466dd306ae2d2869554b354cdf203a755032692 Mon Sep 17 00:00:00 2001 From: Pedro Ivo Hudson Date: Sun, 21 Jan 2024 15:27:05 -0300 Subject: [PATCH] chore: add tool attempt success log message (#498) --- tools/attempt_protocols.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/attempt_protocols.js b/tools/attempt_protocols.js index 822273a..29cbfa3 100644 --- a/tools/attempt_protocols.js +++ b/tools/attempt_protocols.js @@ -31,7 +31,7 @@ const run = async () => { ...options, type: `protocol-${protocol}` }) - console.log(response) + console.log(`Success on '${protocol}':`, response) process.exit() } catch (e) { console.log(`Error on '${protocol}': ${e}`)