We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c82f079 commit 750221dCopy full SHA for 750221d
bittensor_cli/cli.py
@@ -1259,7 +1259,11 @@ def main_callback(
1259
if self.config.get("use_cache", False):
1260
with open(self.debug_file_path, "w+") as f:
1261
f.write(
1262
- f"BTCLI {__version__}\nCommand: {' '.join(sys.argv)}\n{self.config}\n\n"
+ f"BTCLI {__version__}\n"
1263
+ f"Async-Substrate-Interface: {importlib.metadata.version('async-substrate-interface')}\n"
1264
+ f"Bittensor-Wallet: {importlib.metadata.version('bittensor-wallet')}\n"
1265
+ f"Command: {' '.join(sys.argv)}\n"
1266
+ f"Config: {self.config}\n\n"
1267
)
1268
asi_logger = logging.getLogger("async_substrate_interface")
1269
asi_logger.setLevel(logging.DEBUG)
0 commit comments