Skip to content

Commit 03ee37c

Browse files
Cleanup skipped repo logging
1 parent 6ac0c6e commit 03ee37c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/App.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@ public async Task Run(Settings settings)
3030

3131
foreach (var repo in repos)
3232
{
33+
_log(repo.Name);
34+
3335
if (repo.Archived)
3436
{
35-
_log($"(skipping archived {repo.Name})");
37+
_log($"(skipping: repo is archived)");
3638
}
3739
else
3840
{

src/Synchronizer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ private static string LabelNames(IEnumerable<Label> labels)
9090

9191
public async Task SyncRepo(Repository repo, Settings settings, IReadOnlyList<Label> accountLabels)
9292
{
93-
_log(repo.Name);
9493
var repoLabels = await _gitHub.GetLabels(repo);
9594

9695
ShowSynchronizedLabels(repo, accountLabels, repoLabels);

0 commit comments

Comments
 (0)