@@ -39,7 +39,7 @@ impl<T: Config> Pallet<T> {
39
39
) -> dispatch:: DispatchResult {
40
40
// 1. We check the transaction is signed by the caller and retrieve the T::AccountId coldkey information.
41
41
let coldkey = ensure_signed ( origin) ?;
42
- log:: info !(
42
+ log:: debug !(
43
43
"do_remove_stake( origin:{:?} hotkey:{:?}, netuid: {:?}, alpha_unstaked:{:?} )" ,
44
44
coldkey,
45
45
hotkey,
@@ -117,7 +117,7 @@ impl<T: Config> Pallet<T> {
117
117
) -> dispatch:: DispatchResult {
118
118
// 1. We check the transaction is signed by the caller and retrieve the T::AccountId coldkey information.
119
119
let coldkey = ensure_signed ( origin) ?;
120
- log:: info !( "do_unstake_all( origin:{:?} hotkey:{:?} )" , coldkey, hotkey) ;
120
+ log:: debug !( "do_unstake_all( origin:{:?} hotkey:{:?} )" , coldkey, hotkey) ;
121
121
122
122
// 2. Ensure that the hotkey account exists this is only possible through registration.
123
123
ensure ! (
@@ -191,7 +191,7 @@ impl<T: Config> Pallet<T> {
191
191
) -> dispatch:: DispatchResult {
192
192
// 1. We check the transaction is signed by the caller and retrieve the T::AccountId coldkey information.
193
193
let coldkey = ensure_signed ( origin) ?;
194
- log:: info !( "do_unstake_all( origin:{:?} hotkey:{:?} )" , coldkey, hotkey) ;
194
+ log:: debug !( "do_unstake_all( origin:{:?} hotkey:{:?} )" , coldkey, hotkey) ;
195
195
196
196
// 2. Ensure that the hotkey account exists this is only possible through registration.
197
197
ensure ! (
@@ -294,7 +294,7 @@ impl<T: Config> Pallet<T> {
294
294
) -> dispatch:: DispatchResult {
295
295
// 1. We check the transaction is signed by the caller and retrieve the T::AccountId coldkey information.
296
296
let coldkey = ensure_signed ( origin) ?;
297
- log:: info !(
297
+ log:: debug !(
298
298
"do_remove_stake( origin:{:?} hotkey:{:?}, netuid: {:?}, alpha_unstaked:{:?} )" ,
299
299
coldkey,
300
300
hotkey,
0 commit comments