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

source code

Updates existing params 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
  • params - The params to update in the log.

Returns:

A message indicating whether the log was successfully updated.