mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 02:51:01 +00:00
Make sure that relayers have dates in logs. (#927)
This commit is contained in:
committed by
Bastian Köcher
parent
479e51c67b
commit
7c2b54c5e7
@@ -89,8 +89,23 @@ pub enum Command {
|
||||
}
|
||||
|
||||
impl Command {
|
||||
// Initialize logger depending on the command.
|
||||
fn init_logger(&self) {
|
||||
use relay_utils::initialize::{initialize_logger, initialize_relay};
|
||||
|
||||
match self {
|
||||
Self::RelayHeaders(_) | Self::RelayMessages(_) | Self::RelayHeadersAndMessages(_) | Self::InitBridge(_) => {
|
||||
initialize_relay();
|
||||
}
|
||||
_ => {
|
||||
initialize_logger(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Run the command.
|
||||
pub async fn run(self) -> anyhow::Result<()> {
|
||||
self.init_logger();
|
||||
match self {
|
||||
Self::RelayHeaders(arg) => arg.run().await?,
|
||||
Self::RelayMessages(arg) => arg.run().await?,
|
||||
|
||||
Reference in New Issue
Block a user