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:
parent
54651d7bcb
commit
4d88f78184
2 changed files with 0 additions and 7 deletions
|
@ -33,8 +33,6 @@ pub(crate) fn decrypt<T: ReadWriteIpcSegment>(
|
||||||
let mut cursor = Cursor::new(&data);
|
let mut cursor = Cursor::new(&data);
|
||||||
T::read_options(&mut cursor, endian, ())
|
T::read_options(&mut cursor, endian, ())
|
||||||
} else {
|
} else {
|
||||||
tracing::info!("NOTE: Not decrypting this IPC packet since no key was provided!");
|
|
||||||
|
|
||||||
T::read_options(reader, endian, ())
|
T::read_options(reader, endian, ())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,8 +59,6 @@ pub(crate) fn encrypt<T: ReadWriteIpcSegment>(
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
tracing::info!("NOTE: Not encrypting this IPC packet since no key was provided!");
|
|
||||||
|
|
||||||
value.write_options(writer, endian, ())
|
value.write_options(writer, endian, ())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -168,9 +168,6 @@ pub async fn send_packet<T: ReadWriteIpcSegment>(
|
||||||
|
|
||||||
let buffer = cursor.into_inner();
|
let buffer = cursor.into_inner();
|
||||||
|
|
||||||
tracing::info!("Wrote response packet to outpacket.bin");
|
|
||||||
write("outpacket.bin", &buffer).unwrap();
|
|
||||||
|
|
||||||
socket
|
socket
|
||||||
.write_all(&buffer)
|
.write_all(&buffer)
|
||||||
.await
|
.await
|
||||||
|
|
Loading…
Add table
Reference in a new issue