1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-20 14:47:45 +00:00

Remove a good bit of log spam

This commit is contained in:
Joshua Goins 2025-03-27 18:56:26 -04:00
parent 54651d7bcb
commit 4d88f78184
2 changed files with 0 additions and 7 deletions

View file

@ -33,8 +33,6 @@ pub(crate) fn decrypt<T: ReadWriteIpcSegment>(
let mut cursor = Cursor::new(&data);
T::read_options(&mut cursor, endian, ())
} else {
tracing::info!("NOTE: Not decrypting this IPC packet since no key was provided!");
T::read_options(reader, endian, ())
}
}
@ -61,8 +59,6 @@ pub(crate) fn encrypt<T: ReadWriteIpcSegment>(
Ok(())
} else {
tracing::info!("NOTE: Not encrypting this IPC packet since no key was provided!");
value.write_options(writer, endian, ())
}
}

View file

@ -168,9 +168,6 @@ pub async fn send_packet<T: ReadWriteIpcSegment>(
let buffer = cursor.into_inner();
tracing::info!("Wrote response packet to outpacket.bin");
write("outpacket.bin", &buffer).unwrap();
socket
.write_all(&buffer)
.await