// Copyright (c) 2020 Allen Wild
// SPDX-License-Identifier: MIT OR Apache-2.0
useyall::log_macros::*;useyall::Logger;fnmain(){let count:usize=matchstd::env::args().nth(1){Some(c)=> c.parse().unwrap(),None=>100,};Logger::new().init();for i in1..=count {info!("info log {}", i);}}