changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / rust/lib/logger/src/tests.rs

changeset 698: 96958d3eb5b0
parent: 1227f932b628
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 //! logger tests
2 use crate::{
3  log::{debug, info, trace, warn},
4  simple,
5 };
6 #[test]
7 fn simple_init() {
8  assert!(simple().is_ok());
9  info!("now this is podracing");
10  debug!("this");
11  warn!("is");
12  trace!("podracing");
13 }