fixed compile error

This commit is contained in:
Andrew Rioux 2023-12-05 14:48:25 -05:00
parent afcc62df93
commit 0021794c51
Signed by: andrew.rioux
GPG Key ID: 9B8BAC47C17ABB94

View File

@ -382,8 +382,8 @@ async fn use_socket(conf: BeaconOptions, mut socket_handle: TcpSocketHandle) {
#[tokio::main]
async fn main() -> anyhow::Result<()> {
simple_logger::SimpleLogger::new()
.with_level(log::LevelFilter::Log)
.with_module_level("tcp_test", log::LevelFilter::Log)
.with_level(log::LevelFilter::Info)
.with_module_level("tcp_test", log::LevelFilter::Info)
.init()?;
let conf_raw = catconf::read_from_exe(sparse_c2_messages::CONF_SEPARATOR, 4096)?;