MCPcopy Create free account
hub / github.com/golang/appengine / Run

Method Run

log/log.go:235–242  ·  view source on GitHub ↗

Run starts a query for log records, which contain request and application level log information.

(c context.Context)

Source from the content-addressed store, hash-verified

233// Run starts a query for log records, which contain request and application
234// level log information.
235func (params *Query) Run(c context.Context) *Result {
236 req, err := makeRequest(params, internal.FullyQualifiedAppID(c), appengine.VersionID(c))
237 return &Result{
238 context: c,
239 request: req,
240 err: err,
241 }
242}
243
244func makeRequest(params *Query, appID, versionID string) (*pb.LogReadRequest, error) {
245 req := &pb.LogReadRequest{}

Callers 3

TestDelayedLogFlushingFunction · 0.45
TestLogFlushingFunction · 0.45
deployFunction · 0.45

Calls 3

FullyQualifiedAppIDFunction · 0.92
VersionIDFunction · 0.92
makeRequestFunction · 0.85

Tested by 2

TestDelayedLogFlushingFunction · 0.36
TestLogFlushingFunction · 0.36