Logging functions
            rerun
    
def log(entity_path, entity, *extra, static=False, recording=None, strict=None)
  Log data to Rerun.
This is the main entry point for logging data to rerun. It can be used to log anything
that implements the rerun.AsComponents interface, or a collection of ComponentBatchLike
objects.
When logging data, you must always provide an entity_path for identifying the data. Note that paths prefixed with "__" are considered reserved for use by the Rerun SDK itself and should not be used for logging user data. This is where Rerun will log additional information such as properties and warnings.
The most common way to log is with one of the rerun archetypes, all of which implement
the AsComponents interface.
For example, to log a 3D point:
rr.log("my/point", rr.Points3D(position=[1.0, 2.0, 3.0]))
The log function can flexibly accept an arbitrary number of additional objects which will
be merged into the first entity so long as they don't expose conflicting components, for instance:
# Log three points with arrows sticking out of them,
# and a custom "confidence" component.
rr.log(
    "my/points",
    rr.Points3D([[0.2, 0.5, 0.3], [0.9, 1.2, 0.1], [1.0, 4.2, 0.3]], radii=[0.1, 0.2, 0.3]),
    rr.Arrows3D(vectors=[[0.3, 2.1, 0.2], [0.9, -1.1, 2.3], [-0.4, 0.5, 2.9]]),
    rr.AnyValues(confidence=[0.3, 0.4, 0.9]),
)
| PARAMETER | DESCRIPTION | 
|---|---|
| entity_path | Path to the entity in the space hierarchy. The entity path can either be a string
(with special characters escaped, split on unescaped slashes)
or a list of unescaped strings.
This means that logging to  See https://www.rerun.io/docs/concepts/entity-path for more on entity paths. | 
| entity | Anything that implements the  
                  
                    TYPE:
                       | 
| *extra | An arbitrary number of additional component bundles implementing the  
                  
                    TYPE:
                       | 
| static | If true, the components will be logged as static data. Static data has no time associated with it, exists on all timelines, and unconditionally shadows any temporal data of the same type. Otherwise, the data will be timestamped automatically with  
                  
                    TYPE:
                       | 
| recording | Specifies the  
                  
                    TYPE:
                       | 
| strict | If True, raise exceptions on non-loggable data.
If False, warn on non-loggable data.
if None, use the global default from  
                  
                    TYPE:
                       | 
def log_file_from_path(file_path, *, entity_path_prefix=None, static=False, recording=None)
  Logs the file at the given path using all DataLoaders available.
A single path might be handled by more than one loader.
This method blocks until either at least one DataLoader starts
streaming data in or all of them fail.
See https://www.rerun.io/docs/getting-started/data-in/open-any-file for more information.
| PARAMETER | DESCRIPTION | 
|---|---|
| file_path | Path to the file to be logged. | 
| entity_path_prefix | What should the logged entity paths be prefixed with? 
                  
                    TYPE:
                       | 
| static | If true, the components will be logged as static data. Static data has no time associated with it, exists on all timelines, and unconditionally shadows any temporal data of the same type. Otherwise, the data will be timestamped automatically with  
                  
                    TYPE:
                       | 
| recording | Specifies the  
                  
                    TYPE:
                       | 
def log_file_from_contents(file_path, file_contents, *, entity_path_prefix=None, static=False, recording=None)
  Logs the given file_contents using all DataLoaders available.
A single path might be handled by more than one loader.
This method blocks until either at least one DataLoader starts
streaming data in or all of them fail.
See https://www.rerun.io/docs/getting-started/data-in/open-any-file for more information.
| PARAMETER | DESCRIPTION | 
|---|---|
| file_path | Path to the file that the  | 
| file_contents | Contents to be logged. 
                  
                    TYPE:
                       | 
| entity_path_prefix | What should the logged entity paths be prefixed with? 
                  
                    TYPE:
                       | 
| static | If true, the components will be logged as static data. Static data has no time associated with it, exists on all timelines, and unconditionally shadows any temporal data of the same type. Otherwise, the data will be timestamped automatically with  
                  
                    TYPE:
                       | 
| recording | Specifies the  
                  
                    TYPE:
                       |