From 2df026a593de74fdb2657d188d02fbef5f11e69b Mon Sep 17 00:00:00 2001 From: Rinse Date: Mon, 25 May 2026 12:03:43 +0000 Subject: [PATCH] feat(update): hint at `bitsocial logs --stdout` after restarting daemons When `bitsocial update install` installs a new version and restarts the previously-running daemon(s), the user loses access to the old daemon's stdout (which contains the web UI links). Point them at `bitsocial logs --stdout` so they can recover that output from the new daemon. --- src/cli/commands/update/install.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/commands/update/install.ts b/src/cli/commands/update/install.ts index 07e4aa8..54922ae 100644 --- a/src/cli/commands/update/install.ts +++ b/src/cli/commands/update/install.ts @@ -130,6 +130,7 @@ export default class Install extends Command { // Restart daemons with the new binary if (aliveDaemons.length > 0 && flags["restart-daemons"]) { await this._restartDaemons(aliveDaemons); + this.log("To see the daemon logs run `bitsocial logs --stdout`"); } }