TextLog
A log entry in a text log, comprised of a text body and its log level.
Fields fields
Required required
text
:Text
Recommended recommended
level
:TextLogLevel
Optional optional
color
:Color
Can be shown in can-be-shown-in
API reference links api-reference-links
Example example
text_log_integration textlogintegration
"""Shows integration of Rerun's `TextLog` with the native logging interface."""
import logging
import rerun as rr
rr.init("rerun_example_text_log_integration", spawn=True)
# Log a text entry directly
rr.log("logs", rr.TextLog("this entry has loglevel TRACE", level=rr.TextLogLevel.TRACE))
# Or log via a logging handler
logging.getLogger().addHandler(rr.LoggingHandler("logs/handler"))
logging.getLogger().setLevel(-1)
logging.info("This INFO log got added through the standard logging interface")