From c89389772f51eb27852636ff8d5a7bfc007dc4fa Mon Sep 17 00:00:00 2001 From: Russell Dempsey <1173416+SgtPooki@users.noreply.github.com> Date: Wed, 2 Nov 2022 19:50:41 +0000 Subject: [PATCH 1/2] chore: disable `ipfs log tail` --- core/commands/log.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/commands/log.go b/core/commands/log.go index 96366d4c4ee..a1924068960 100644 --- a/core/commands/log.go +++ b/core/commands/log.go @@ -34,7 +34,8 @@ system (not just for the daemon logs, but all commands): Subcommands: map[string]*cmds.Command{ "level": logLevelCmd, "ls": logLsCmd, - "tail": logTailCmd, + // FIXME: Re-enable `ipfs log tail` command. Tracked in https://github.com/ipfs/kubo/issues/9245 + // "tail": logTailCmd, }, } @@ -110,6 +111,8 @@ var logTailCmd = &cmds.Command{ Tagline: "Read the event log.", ShortDescription: ` Outputs event log messages (not other log messages) as they are generated. + +Currently broken. Follow https://github.com/ipfs/kubo/issues/9245 for updates. `, }, From 27bb25d2f1750be23435641ad4a970b64464d158 Mon Sep 17 00:00:00 2001 From: Russell Dempsey <1173416+SgtPooki@users.noreply.github.com> Date: Thu, 3 Nov 2022 04:29:12 -0700 Subject: [PATCH 2/2] chore: allow `ipfs log tail` cmd to exist but keep the messaging with the link back to the broken issue --- core/commands/log.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/commands/log.go b/core/commands/log.go index a1924068960..d2cb4a1a168 100644 --- a/core/commands/log.go +++ b/core/commands/log.go @@ -34,8 +34,7 @@ system (not just for the daemon logs, but all commands): Subcommands: map[string]*cmds.Command{ "level": logLevelCmd, "ls": logLsCmd, - // FIXME: Re-enable `ipfs log tail` command. Tracked in https://github.com/ipfs/kubo/issues/9245 - // "tail": logTailCmd, + "tail": logTailCmd, }, }