Skip to content

Commit

Permalink
cleanup log noise (#90)
Browse files Browse the repository at this point in the history
Co-authored-by: Wil Boayue <[email protected]>
  • Loading branch information
wboayue and Wil Boayue authored May 8, 2023
1 parent cb73f05 commit 723634d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibapi"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
authors = ["Wil Boayue <[email protected]>"]
description = "A synchronous implementation of the Interactive Brokers TWS API."
Expand Down
7 changes: 0 additions & 7 deletions src/contracts/decoders.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use log::info;

use crate::{contracts::SecurityType, messages::ResponseMessage, orders::TagValue, server_versions, Error};

use super::{Contract, ContractDescription, ContractDetails, MarketRule, PriceIncrement};
Expand All @@ -17,11 +15,6 @@ pub(crate) fn contract_details(server_version: i32, message: &mut ResponseMessag
request_id = message.next_int()?;
}

info!(
"request_id: {}, server_version: {}, message_version: {}",
request_id, server_version, message_version
);

let mut contract = ContractDetails::default();

contract.contract.symbol = message.next_string()?;
Expand Down

0 comments on commit 723634d

Please sign in to comment.