def add_log_params(
    *,
    logs: Optional[Union[int, unify.Log, List[Union[int, unify.Log]]]] = None,
    mutable: Optional[Union[bool, Dict[str, bool]]] = True,
    api_key: Optional[str] = None,
    **params,
) -> Dict[str, str]:

source code

Add extra params into an existing log.

Arguments:

  • logs - The log(s) to update with extra params. Looks for the current active log if
  • mutable - Either a boolean to apply uniform mutability for all parameters, or a dictionary mapping parameter names to booleans for per-field control.
  • api_key - If specified, unify API key to be used. Defaults to the value in the
  • params - Dictionary containing one or more key:value pairs that will be

Returns:

A message indicating whether the logs were successfully updated.