MCPcopy Index your code
hub / github.com/dagger/dagger / Debug

Method Debug

sdk/python/runtime/internal/dagger/dagger.gen.go:13613–13623  ·  view source on GitHub ↗

Whether to start the SDK runtime in debug mode with an interactive terminal.

(ctx context.Context)

Source from the content-addressed store, hash-verified

13611
13612// Whether to start the SDK runtime in debug mode with an interactive terminal.
13613func (r *SDKConfig) Debug(ctx context.Context) (bool, error) {
13614 if r.debug != nil {
13615 return *r.debug, nil
13616 }
13617 q := r.query.Select("debug")
13618
13619 var response bool
13620
13621 q = q.Bind(&response)
13622 return response, q.Execute(ctx)
13623}
13624
13625// A unique identifier for this SDKConfig.
13626func (r *SDKConfig) ID(ctx context.Context) (ID, error) {

Callers 1

LoadMethod · 0.45

Calls 3

SelectMethod · 0.65
BindMethod · 0.45
ExecuteMethod · 0.45

Tested by

no test coverage detected