From 5cdfd79e9629d0df534008d2281d0ede259fcb1f Mon Sep 17 00:00:00 2001 From: Sagar Dhawan Date: Wed, 3 Apr 2019 15:59:28 -0700 Subject: [PATCH] Replace print with debug --- programs/storage_api/src/storage_processor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/storage_api/src/storage_processor.rs b/programs/storage_api/src/storage_processor.rs index e5f5150aba..cc8fcf8011 100644 --- a/programs/storage_api/src/storage_processor.rs +++ b/programs/storage_api/src/storage_processor.rs @@ -219,7 +219,7 @@ pub fn process_instruction( let current_index = get_segment_from_entry(tick_height); let claims_index = get_segment_from_entry(entry_height); if current_index <= claims_index || claims_index >= reward_validations.len() { - println!( + debug!( "current {:?}, claim {:?}, rewards {:?}", current_index, claims_index,