diff --git a/changelog.md b/changelog.md index 17a24ae372..93bd51b5ad 100644 --- a/changelog.md +++ b/changelog.md @@ -20,6 +20,8 @@ - [#3905](https://github.com/ignite/cli/pull/3905) Fix `ignite completion` - [#3931](https://github.com/ignite/cli/pull/3931) Fix `app update` command and duplicated apps +- [#3931](https://github.com/ignite/cli/pull/3931) Fix `app update` command and duplicated apps +- [#3953](https://github.com/ignite/cli/pull/3953) Fix apps `Stdout` is redirected to `Stderr` ## [`v28.1.1`](https://github.com/ignite/cli/releases/tag/v28.1.1) diff --git a/ignite/services/plugin/plugin.go b/ignite/services/plugin/plugin.go index 91415f0692..17bc51934b 100644 --- a/ignite/services/plugin/plugin.go +++ b/ignite/services/plugin/plugin.go @@ -83,7 +83,6 @@ func CollectEvents(ev events.Bus) Option { func RedirectStdout(w io.Writer) Option { return func(p *Plugin) { p.stdout = w - p.stderr = w } } @@ -272,8 +271,8 @@ func (p *Plugin) load(ctx context.Context) { HandshakeConfig: HandshakeConfig(), Plugins: pluginMap, Logger: logger, - SyncStderr: p.stdout, - SyncStdout: p.stderr, + SyncStdout: p.stdout, + SyncStderr: p.stderr, AllowedProtocols: []hplugin.Protocol{hplugin.ProtocolGRPC}, }