Skip to content

Commit

Permalink
Merge pull request #301 from cgwalters/more-journal
Browse files Browse the repository at this point in the history
deploy: Log filtered content warning to journal, not stderr
  • Loading branch information
jeckersb committed Feb 5, 2024
2 parents faf478d + e88cd80 commit 8969314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ pub(crate) async fn pull(
if let Some(msg) =
ostree_container::store::image_filtered_content_warning(repo, &imgref.imgref)?
{
eprintln!("{msg}")
crate::journal::journal_print(libsystemd::logging::Priority::Notice, &msg);
}
Ok(Box::new((*import).into()))
}
Expand Down

0 comments on commit 8969314

Please sign in to comment.