Skip to content

Commit f2b3369

Browse files
committed
fix: remove noisy logging
1 parent 7cd038a commit f2b3369

2 files changed

Lines changed: 14 additions & 12 deletions

File tree

ddk-manager/src/manager.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -993,13 +993,13 @@ where
993993
.await
994994
{
995995
Ok(attestation) => attestation,
996-
Err(e) => {
997-
log_error!(self.logger,
998-
"Attestation not found for event. pubkey={} event_id={} error={}",
999-
announcement.oracle_public_key,
1000-
announcement.oracle_event.event_id,
1001-
e.to_string()
1002-
);
996+
Err(_) => {
997+
// log_error!(self.logger,
998+
// "Attestation not found for event. pubkey={} event_id={} error={}",
999+
// announcement.oracle_public_key,
1000+
// announcement.oracle_event.event_id,
1001+
// e.to_string()
1002+
// );
10031003
return None;
10041004
}
10051005
};
@@ -1041,11 +1041,11 @@ where
10411041

10421042
#[tracing::instrument(skip_all, level = "debug")]
10431043
async fn check_confirmed_contract(&self, contract: &SignedContract) -> Result<(), Error> {
1044-
log_debug!(
1045-
self.logger,
1046-
"Checking confirmed contract. contract_id={}",
1047-
contract.accepted_contract.get_contract_id_string()
1048-
);
1044+
// log_debug!(
1045+
// self.logger,
1046+
// "Checking confirmed contract. contract_id={}",
1047+
// contract.accepted_contract.get_contract_id_string()
1048+
// );
10491049
let closable_contract_info = self.get_closable_contract_info(contract).await;
10501050
if let Some((contract_info, adaptor_info, attestations)) = closable_contract_info {
10511051
log_debug!(

ddk/src/oracle/kormir.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,7 @@ mod tests {
378378
}
379379

380380
#[tokio::test]
381+
#[ignore = "Kormir is not available"]
381382
async fn kormir_enum_events() {
382383
let kormir = create_kormir().await;
383384

@@ -406,6 +407,7 @@ mod tests {
406407
}
407408

408409
#[tokio::test]
410+
#[ignore = "Kormir is not available"]
409411
async fn kormir_numeric_events() {
410412
let kormir = create_kormir().await;
411413

0 commit comments

Comments
 (0)