diff options
author | tomberek <tomberek@users.noreply.github.com> | 2022-01-28 10:18:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 10:18:29 -0500 |
commit | 2bf96bd9f299885b38cafa460a06c77f0c296dfe (patch) | |
tree | ea5509fce38534d28d13984d1171385a9dc9a122 /src/nix | |
parent | 73e82ae954be991858053df2a6b7323fe3a82c36 (diff) | |
parent | 4bf6af7b555033de5c1d6851edb60a91940d43c3 (diff) |
Merge branch 'master' into bundler_drv
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/ping-store.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nix/ping-store.cc b/src/nix/ping-store.cc index 62b645b06..3c3b7bb45 100644 --- a/src/nix/ping-store.cc +++ b/src/nix/ping-store.cc @@ -20,7 +20,10 @@ struct CmdPingStore : StoreCommand void run(ref<Store> store) override { + notice("Store URL: %s", store->getUri()); store->connect(); + if (auto version = store->getVersion()) + notice("Version: %s", *version); } }; |