Remove unnecessary logs

This commit is contained in:
techmetx11 2024-08-14 12:11:08 +01:00
parent bf22ef0462
commit c42c71ff5d
No known key found for this signature in database
GPG Key ID: E60B63635FF4E062
3 changed files with 3 additions and 3 deletions

View File

@ -150,7 +150,7 @@ pub async fn process_decrypt_n_signature<W>(
let cloned_writer = stream.clone();
let global_state = state.clone();
println!("Signature to be decrypted: {}", sig);
//println!("Signature to be decrypted: {}", sig);
let interp = global_state.js_runtime_pool.acquire().await;
let cloned_interp = interp.clone();

View File

@ -102,7 +102,7 @@ where
while let Some(opcode_res) = stream.next().await {
match opcode_res {
Ok(opcode) => {
println!("Received job: {}", opcode.opcode);
//println!("Received job: {}", opcode.opcode);
match opcode.opcode {
JobOpcode::ForceUpdate => {

View File

@ -52,7 +52,7 @@ impl Decoder for OpcodeDecoder {
&mut self,
src: &mut tokio_util::bytes::BytesMut,
) -> Result<Option<Self::Item>, Self::Error> {
println!("Decoder length: {}", src.len());
//println!("Decoder length: {}", src.len());
if 5 > src.len() {
return Ok(None);
}