# Functions
Go is a convenience function that starts a new Context that runs the given function -- like starting a goroutine.
Writes pretty and indented debug state info of a given verbosity level.
Periodically calls PrintContextTree() to the context's logger.
Starts a new Context with no parent Context.
# Interfaces
Context is an expanded form of a context.Context offering, featuring: - integrated logging, removing guesswork of which Context logged what - "child" Contexts such that Close() will cause a Context's children to close - automatic idle-close of Contexts after a period of inactivity - the OnClosing() hook, allowing cleanup to occur when a Context is closed but before its parent is closed.