From 681d1e14d89a4478c9b39327dc70beed4cebdbd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Sun, 5 Jan 2025 13:23:15 -0800 Subject: [PATCH] Test --- tests/prototype.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/prototype.rs b/tests/prototype.rs index afc4aa4..40c7988 100644 --- a/tests/prototype.rs +++ b/tests/prototype.rs @@ -9,5 +9,15 @@ #[test_log::test] fn it_works() { + tracing::debug!("tracing::DEBUG"); + tracing::info!("tracing::INFO"); + tracing::warn!("tracing::WARN"); + tracing::error!("tracing::ERROR"); + + logging::debug!("log::DEBUG"); + logging::info!("log::INFO"); + logging::warn!("log::WARN"); + logging::error!("log::ERROR"); + assert_eq!(2 + 2, 4); }