feat: with more logs
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-01-31 20:11:36 +01:00
parent f2196920f4
commit 0deb6f83a0
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394

View File

@ -35,6 +35,7 @@ pub mod well_known {
use super::CuddleX;
pub async fn render() -> eyre::Result<()> {
tracing::info!("running render");
let (stdout, stderr, _) = CuddleX::command("render").run().await?;
for line in stdout.lines() {
@ -45,6 +46,8 @@ pub mod well_known {
tracing::trace!("render: {}", line);
}
tracing::info!("finished running render");
Ok(())
}
}