From 7c523b8d8a9742d91f4adeab1fd2afb5867893a9 Mon Sep 17 00:00:00 2001 From: dakimura <34202807+dakimura@users.noreply.github.com> Date: Mon, 11 Oct 2021 10:00:02 +0900 Subject: [PATCH] chore(makefile): add logging (#519) --- tests/integ/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integ/Makefile b/tests/integ/Makefile index e59e43069..984a6fc69 100644 --- a/tests/integ/Makefile +++ b/tests/integ/Makefile @@ -21,9 +21,9 @@ connect: run -H 'Content-Type: application/json' http://localhost:5993/rpc ; \ \ if [ $$? -ne 0 ]; then \ - echo "Failed"; \ + echo "Failed: ListSymbols rpc call for connection check"; \ else \ - echo "Passed"; \ + echo "Passed: ListSymbols rpc call for connection check"; \ fi .PHONY: run