Properties
Methods
update
update(
name: Optional[str] = None, data: Optional[LogDataType] = None
)
Description
Update this log with a new name or new data
You cannot change the type of this Log.
Examples
Arguments
-
name (str, optional) : New name of the log. Defaults to None.
-
data (LogDataType, optional) : New data of the log. Defaults to None.
delete
delete()
Description
Delete this log
Examples
my_log.delete()
append
append(
data: LogDataType
)
Description
Appends value to log with given name.
You can only append log on Line logs.
Examples
Arguments
- data (LogDataType) : Data to append to this log