Move the OutputChannel to the HostProvider #5189
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Replace the vscode
OutputChannel.appendLine
withHostProvider.logToChannel
.Remove places where the cline OutputChannel was being passed around. Now it is stored in the HostProvider, so we don't need to do this. We don't need to initialize the
Logger
to setup the output channel anymore, the channel is set up when the HostProvider is initialized.Remove the OutputChannel from the vscode-impls.
Important
Refactor logging by moving
OutputChannel
management toHostProvider
, simplifying code and centralizing logging functionality.vscode.OutputChannel.appendLine
withHostProvider.logToChannel
for logging.OutputChannel
parameter fromController
andWebviewProvider
constructors.OutputChannel
inHostProvider
during setup inextension.ts
andcline-core.ts
.Logger
class to useHostProvider.logToChannel
for logging.cleanupLegacyCheckpoints()
inCheckpointMigration.ts
to useHostProvider.logToChannel
.cline-api.test.ts
to mocklogToChannel
instead ofOutputChannel
.OutputChannel
creation fromvscode-impls.js
andvscode-context-stubs.ts
.createClineAPI()
inindex.ts
to no longer requireOutputChannel
.This description was created by
for 2e6face. You can customize this summary. It will automatically update as commits are pushed.