Skip to content

Commit

Permalink
[-] remove info log
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhongFuze committed Mar 7, 2024
1 parent 68914a6 commit a9af863
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tigergraph/vertex/identity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use serde::{Deserialize, Serialize};
use serde_json::json;
use std::collections::HashMap;
use std::fmt;
use tracing::{error, info, trace};
use tracing::{error, trace};
use uuid::Uuid;

pub const VERTEX_NAME: &str = "Identities";
Expand Down Expand Up @@ -1087,7 +1087,7 @@ impl BatchFn<String, Option<bool>> for NeighborReverseLoadFn {
#[async_trait::async_trait]
impl BatchFn<String, Option<NaiveDateTime>> for ExpireTimeLoadFn {
async fn load(&mut self, ids: &[String]) -> HashMap<String, Option<NaiveDateTime>> {
info!("Loading ids for expired_time_by_ids {:?}", ids);
trace!("Loading ids for expired_time_by_ids {:?}", ids);
let records = get_expired_time_by_ids(&self.client, ids.to_vec()).await;
match records {
Ok(records) => records,
Expand Down

0 comments on commit a9af863

Please sign in to comment.