use rerun::external::log;
pub fn main(_args: &[String]) -> Result<(), Box<dyn std::error::Error>> {
let rec = rerun::RecordingStreamBuilder::new("rerun_example_text_log_integration").spawn()?;
rec.log(
"logs",
&rerun::TextLog::new("this entry has loglevel TRACE")
.with_level(rerun::TextLogLevel::TRACE),
)?;
rerun::Logger::new(rec.clone()) .with_path_prefix("logs/handler")
.with_filter(rerun::default_log_filter())
.init()?;
log::info!("This INFO log got added through the standard logging interface");
log::logger().flush();
Ok(())
}