tree: 359a27c49d10c6596bd2b3a4f8c8ff87022e7149 [path history] [tgz]
  1. apiv2/
  2. internal/
  3. logadmin/
  4. CHANGES.md
  5. doc.go
  6. examples_test.go
  7. go.mod
  8. go.sum
  9. go_mod_tidy_hack.go
  10. logging.go
  11. logging_test.go
  12. logging_unexported_test.go
  13. README.md
logging/README.md

Stackdriver Logging GoDoc

Example Usage

First create a logging.Client to use throughout your application: [snip]:# (logging-1)

ctx := context.Background()
client, err := logging.NewClient(ctx, "my-project")
if err != nil {
	// TODO: Handle error.
}

Usually, you'll want to add log entries to a buffer to be periodically flushed (automatically and asynchronously) to the Stackdriver Logging service. [snip]:# (logging-2)

logger := client.Logger("my-log")
logger.Log(logging.Entry{Payload: "something happened!"})

Close your client before your program exits, to flush any buffered log entries. [snip]:# (logging-3)

err = client.Close()
if err != nil {
	// TODO: Handle error.
}