From ef528ccb3f3181d8f0c5e3b7203e936c4b54e1fc Mon Sep 17 00:00:00 2001 From: Theis Pieter Hollebeek Date: Thu, 12 Dec 2024 11:33:59 +0100 Subject: [PATCH] rpc-server binding on addr message --- runtime/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/main.cpp b/runtime/main.cpp index 4ad457b..1529b22 100644 --- a/runtime/main.cpp +++ b/runtime/main.cpp @@ -56,6 +56,7 @@ int main(int argc, char** argv) action->perform_action(std::move(writer), state); }); + std::cout << "binding on 127.0.0.1:13370\n"; auto res = rpc.listen(); if (!res.is_ok()) { std::cout << res.err().msg << "\n";