mirror of
				https://github.com/0glabs/0g-storage-node.git
				synced 2025-11-04 08:37:27 +00:00 
			
		
		
		
	Enhance log level (#103)
* reduce default find peers timeout for auto sync * opt log level to avoid too many noisy info logs
This commit is contained in:
		
							parent
							
								
									055d1fa32d
								
							
						
					
					
						commit
						5bc5bbd696
					
				@ -243,7 +243,7 @@ impl Libp2pEventHandler {
 | 
			
		||||
        id: &MessageId,
 | 
			
		||||
        message: PubsubMessage,
 | 
			
		||||
    ) -> MessageAcceptance {
 | 
			
		||||
        info!(?message, %propagation_source, %source, %id, "Received pubsub message");
 | 
			
		||||
        trace!(?message, %propagation_source, %source, %id, "Received pubsub message");
 | 
			
		||||
 | 
			
		||||
        match message {
 | 
			
		||||
            PubsubMessage::ExampleMessage(_) => MessageAcceptance::Ignore,
 | 
			
		||||
 | 
			
		||||
@ -28,8 +28,8 @@ impl Default for Config {
 | 
			
		||||
    fn default() -> Self {
 | 
			
		||||
        Self {
 | 
			
		||||
            auto_sync_enabled: false,
 | 
			
		||||
            max_sync_files: 100,
 | 
			
		||||
            find_peer_timeout: Duration::from_secs(30),
 | 
			
		||||
            max_sync_files: 8,
 | 
			
		||||
            find_peer_timeout: Duration::from_secs(10),
 | 
			
		||||
            sync_file_by_rpc_enabled: true,
 | 
			
		||||
            sync_file_on_announcement_enabled: false,
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
@ -345,7 +345,7 @@ impl SyncService {
 | 
			
		||||
        request_id: PeerRequestId,
 | 
			
		||||
        request: GetChunksRequest,
 | 
			
		||||
    ) {
 | 
			
		||||
        info!(?request, %peer_id, ?request_id, "Received GetChunks request");
 | 
			
		||||
        debug!(?request, %peer_id, ?request_id, "Received GetChunks request");
 | 
			
		||||
 | 
			
		||||
        if let Err(err) = self
 | 
			
		||||
            .handle_chunks_request_with_db_err(peer_id, request_id, request)
 | 
			
		||||
@ -459,7 +459,7 @@ impl SyncService {
 | 
			
		||||
        request_id: RequestId,
 | 
			
		||||
        response: ChunkArrayWithProof,
 | 
			
		||||
    ) {
 | 
			
		||||
        info!(%response.chunks, %peer_id, ?request_id, "Received chunks response");
 | 
			
		||||
        debug!(%response.chunks, %peer_id, ?request_id, "Received chunks response");
 | 
			
		||||
 | 
			
		||||
        let tx_seq = match request_id {
 | 
			
		||||
            RequestId::SerialSync { tx_id } => tx_id.seq,
 | 
			
		||||
@ -604,7 +604,7 @@ impl SyncService {
 | 
			
		||||
 | 
			
		||||
    async fn on_announce_file_gossip(&mut self, tx_id: TxID, peer_id: PeerId, addr: Multiaddr) {
 | 
			
		||||
        let tx_seq = tx_id.seq;
 | 
			
		||||
        info!(%tx_seq, %peer_id, %addr, "Received AnnounceFile gossip");
 | 
			
		||||
        debug!(%tx_seq, %peer_id, %addr, "Received AnnounceFile gossip");
 | 
			
		||||
 | 
			
		||||
        self.manager.update_on_announcement(tx_seq).await;
 | 
			
		||||
 | 
			
		||||
@ -644,7 +644,7 @@ impl SyncService {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    async fn on_announce_chunks_gossip(&mut self, msg: AnnounceChunks) {
 | 
			
		||||
        info!(?msg, "Received AnnounceChunks gossip");
 | 
			
		||||
        debug!(?msg, "Received AnnounceChunks gossip");
 | 
			
		||||
 | 
			
		||||
        if let Some(controller) = self.controllers.get_mut(&msg.tx_id.seq) {
 | 
			
		||||
            let info = controller.get_sync_info();
 | 
			
		||||
 | 
			
		||||
@ -230,7 +230,7 @@ miner_key = ""
 | 
			
		||||
 | 
			
		||||
# Timeout to terminate a file sync when automatically sync from other peers.
 | 
			
		||||
# If timeout, terminated file sync will be triggered later.
 | 
			
		||||
# find_peer_timeout = "30s"
 | 
			
		||||
# find_peer_timeout = "10s"
 | 
			
		||||
 | 
			
		||||
# Enable to start a file sync via RPC (e.g. `admin_startSyncFile`).
 | 
			
		||||
# sync_file_by_rpc_enabled = true
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user