def start_log(
    *,
    project: Optional[str] = None,
    api_key: Optional[str] = None,
    **entries,
) -> Token:

source code

Start a new log, such that all subsequent calls to unify.log will continue to populate the currently open log.

Arguments:

  • project - Name of the project to get logs from.
  • api_key - If specified, unify API key to be used. Defaults to the value in the
  • entries - The entries to start the log. Future calls to unify.log will add

Returns:

The token which will need to be used to end the log.