From 388a0235dd474775937d962ec2fc323ea16506d5 Mon Sep 17 00:00:00 2001 From: mike Date: Thu, 28 Dec 2023 04:20:42 -0800 Subject: [PATCH] Log each repo during migration --- domain/Migrator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/domain/Migrator.py b/domain/Migrator.py index 3ab339e..951918c 100644 --- a/domain/Migrator.py +++ b/domain/Migrator.py @@ -327,6 +327,8 @@ class Migrator: this_destination_repo_name = destination_repo_name.replace("%N%", source_repo.name) + self.__logger.info(f"Migrating: {source_repo.name} ==> {this_destination_repo_name}") + source_repo_topics = api_source_repos.repo_list_topics(owner=source_repo.owner.login, repo=source_repo.name) source_repo_topics = source_repo_topics.topics