def update_log_entries(
    fn: Union[callable, Dict[str, callable]],
    id: Optional[int] = None,
    api_key: Optional[str] = None,
    **kwargs,
) -> 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.
  • id - The log id to update fields for. Looks for the current active log if no
  • api_key - If specified, unify API key to be used. Defaults to the value in the
  • kwargs - The data to update in the log.

Returns:

A message indicating whether the log was successfully updated.