Remove unnecessary logs
This commit is contained in:
parent
bf22ef0462
commit
c42c71ff5d
3 changed files with 3 additions and 3 deletions
|
@ -150,7 +150,7 @@ pub async fn process_decrypt_n_signature<W>(
|
||||||
let cloned_writer = stream.clone();
|
let cloned_writer = stream.clone();
|
||||||
let global_state = state.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 interp = global_state.js_runtime_pool.acquire().await;
|
||||||
|
|
||||||
let cloned_interp = interp.clone();
|
let cloned_interp = interp.clone();
|
||||||
|
|
|
@ -102,7 +102,7 @@ where
|
||||||
while let Some(opcode_res) = stream.next().await {
|
while let Some(opcode_res) = stream.next().await {
|
||||||
match opcode_res {
|
match opcode_res {
|
||||||
Ok(opcode) => {
|
Ok(opcode) => {
|
||||||
println!("Received job: {}", opcode.opcode);
|
//println!("Received job: {}", opcode.opcode);
|
||||||
|
|
||||||
match opcode.opcode {
|
match opcode.opcode {
|
||||||
JobOpcode::ForceUpdate => {
|
JobOpcode::ForceUpdate => {
|
||||||
|
|
|
@ -52,7 +52,7 @@ impl Decoder for OpcodeDecoder {
|
||||||
&mut self,
|
&mut self,
|
||||||
src: &mut tokio_util::bytes::BytesMut,
|
src: &mut tokio_util::bytes::BytesMut,
|
||||||
) -> Result<Option<Self::Item>, Self::Error> {
|
) -> Result<Option<Self::Item>, Self::Error> {
|
||||||
println!("Decoder length: {}", src.len());
|
//println!("Decoder length: {}", src.len());
|
||||||
if 5 > src.len() {
|
if 5 > src.len() {
|
||||||
return Ok(None);
|
return Ok(None);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue