mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 02:51:08 +00:00
introduce log-target constant to more frame pallets (#13116)
* introduce log-target constant to more frame pallets * cargo fmt * make LOG_TARGET in session public * Update frame/elections-phragmen/src/lib.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update frame/elections-phragmen/src/migrations/v3.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update frame/elections-phragmen/src/migrations/v3.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update frame/elections-phragmen/src/migrations/v3.rs Co-authored-by: Bastian Köcher <git@kchr.de> * move LOG_TARGET=runtime::session_historical to migrations module, where it's actually used Co-authored-by: Bastian Köcher <git@kchr.de>
This commit is contained in:
@@ -71,6 +71,8 @@ pub mod weights;
|
||||
pub use pallet::*;
|
||||
pub use weights::WeightInfo;
|
||||
|
||||
const LOG_TARGET: &str = "runtime::collective";
|
||||
|
||||
/// Simple index type for proposal counting.
|
||||
pub type ProposalIndex = u32;
|
||||
|
||||
@@ -390,7 +392,7 @@ pub mod pallet {
|
||||
ensure_root(origin)?;
|
||||
if new_members.len() > T::MaxMembers::get() as usize {
|
||||
log::error!(
|
||||
target: "runtime::collective",
|
||||
target: LOG_TARGET,
|
||||
"New members count ({}) exceeds maximum amount of members expected ({}).",
|
||||
new_members.len(),
|
||||
T::MaxMembers::get(),
|
||||
@@ -400,7 +402,7 @@ pub mod pallet {
|
||||
let old = Members::<T, I>::get();
|
||||
if old.len() > old_count as usize {
|
||||
log::warn!(
|
||||
target: "runtime::collective",
|
||||
target: LOG_TARGET,
|
||||
"Wrong count used to estimate set_members weight. expected ({}) vs actual ({})",
|
||||
old_count,
|
||||
old.len(),
|
||||
@@ -1040,7 +1042,7 @@ impl<T: Config<I>, I: 'static> ChangeMembers<T::AccountId> for Pallet<T, I> {
|
||||
) {
|
||||
if new.len() > T::MaxMembers::get() as usize {
|
||||
log::error!(
|
||||
target: "runtime::collective",
|
||||
target: LOG_TARGET,
|
||||
"New members count ({}) exceeds maximum amount of members expected ({}).",
|
||||
new.len(),
|
||||
T::MaxMembers::get(),
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
|
||||
use sp_io::hashing::twox_128;
|
||||
|
||||
use super::super::LOG_TARGET;
|
||||
use frame_support::{
|
||||
traits::{
|
||||
Get, GetStorageVersion, PalletInfoAccess, StorageVersion,
|
||||
@@ -42,7 +43,7 @@ pub fn migrate<T: frame_system::Config, P: GetStorageVersion + PalletInfoAccess,
|
||||
|
||||
if new_pallet_name == old_pallet_name {
|
||||
log::info!(
|
||||
target: "runtime::collective",
|
||||
target: LOG_TARGET,
|
||||
"New pallet name is equal to the old pallet name. No migration needs to be done.",
|
||||
);
|
||||
return Weight::zero()
|
||||
@@ -50,7 +51,7 @@ pub fn migrate<T: frame_system::Config, P: GetStorageVersion + PalletInfoAccess,
|
||||
|
||||
let on_chain_storage_version = <P as GetStorageVersion>::on_chain_storage_version();
|
||||
log::info!(
|
||||
target: "runtime::collective",
|
||||
target: LOG_TARGET,
|
||||
"Running migration to v4 for collective with storage version {:?}",
|
||||
on_chain_storage_version,
|
||||
);
|
||||
@@ -66,7 +67,7 @@ pub fn migrate<T: frame_system::Config, P: GetStorageVersion + PalletInfoAccess,
|
||||
<T as frame_system::Config>::BlockWeights::get().max_block
|
||||
} else {
|
||||
log::warn!(
|
||||
target: "runtime::collective",
|
||||
target: LOG_TARGET,
|
||||
"Attempted to apply migration to v4 but failed because storage version is {:?}",
|
||||
on_chain_storage_version,
|
||||
);
|
||||
@@ -138,7 +139,7 @@ pub fn post_migrate<P: GetStorageVersion + PalletInfoAccess, N: AsRef<str>>(old_
|
||||
|
||||
fn log_migration(stage: &str, old_pallet_name: &str, new_pallet_name: &str) {
|
||||
log::info!(
|
||||
target: "runtime::collective",
|
||||
target: LOG_TARGET,
|
||||
"{}, prefix: '{}' ==> '{}'",
|
||||
stage,
|
||||
old_pallet_name,
|
||||
|
||||
Reference in New Issue
Block a user