Skip to content

Commit

Permalink
Merge pull request #1937 from jagerman/print-snode-addr-on-startup
Browse files Browse the repository at this point in the history
Show router pubkey at startup
  • Loading branch information
majestrate authored Jun 16, 2022
2 parents 85cf2da + 3cd699f commit 2e08228
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion llarp/router/router.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,8 @@ namespace llarp
try
{
_identity = RpcClient()->ObtainIdentityKey();
LogWarn("Obtained lokid identity keys");
const RouterID pk{pubkey()};
LogWarn("Obtained lokid identity key: ", pk);
break;
}
catch (const std::exception& e)
Expand Down

0 comments on commit 2e08228

Please sign in to comment.