def update_log_entries(
    *,
    fn: Union[callable, Dict[str, callable]],
    log: Optional[Union[int, unify.Log]] = None,
    api_key: Optional[str] = None,
    **entries,
) -> Dict[str, str]:

source code

Updates existing entries in an existing log.

Arguments:

  • fn - The function or set of functions to apply to each field in the log.
  • log - The log to update fields for. Looks for the current active log if not
  • api_key - If specified, unify API key to be used. Defaults to the value in the
  • entries - The entries to update in the log.

Returns:

A message indicating whether the log was successfully updated.