Skip to content

Commit

Permalink
Remove unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
techmetx11 committed Aug 14, 2024
1 parent bf22ef0 commit c42c71f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/jobs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down
2 changes: 1 addition & 1 deletion src/opcode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit c42c71f

Please sign in to comment.