@@ -136,16 +136,16 @@ func WithWatcher(w watcher.Watcher) Option {
136
136
// ScriptLogger is an interface for sending devcontainer logs to the
137
137
// controlplane.
138
138
type ScriptLogger interface {
139
- Send (ctx context.Context ,log ... agentsdk.Log )error
139
+ Send (context.Context ,... agentsdk.Log )error
140
140
Flush (context.Context )error
141
141
}
142
142
143
143
// noopScriptLogger is a no-op implementation of the ScriptLogger
144
144
// interface.
145
145
type noopScriptLogger struct {}
146
146
147
- func (noopScriptLogger )Send (ctx context.Context ,log ... agentsdk.Log )error {return nil }
148
- func (noopScriptLogger )Flush (ctx context.Context )error {return nil }
147
+ func (noopScriptLogger )Send (context.Context ,... agentsdk.Log )error {return nil }
148
+ func (noopScriptLogger )Flush (context.Context )error {return nil }
149
149
150
150
// WithScriptLogger sets the script logger provider for devcontainer operations.
151
151
func WithScriptLogger (scriptLogger func (logSourceID uuid.UUID )ScriptLogger )Option {