File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 97
97
ZULIP_API_TOKEN : ${{ secrets.ZULIP_API_TOKEN }}
98
98
ZULIP_USERNAME : ${{ secrets.ZULIP_USERNAME }}
99
99
run : |
100
- cargo run sync apply --team-json build
100
+ RUST_LOG="sync_team=debug" cargo run sync apply --team-json build
101
101
102
102
- name : Disable Jekyll
103
103
run : touch build/.nojekyll
Original file line number Diff line number Diff line change @@ -135,6 +135,8 @@ impl SyncGitHub {
135
135
}
136
136
137
137
fn diff_team ( & self , github_team : & rust_team_data:: v1:: GitHubTeam ) -> anyhow:: Result < TeamDiff > {
138
+ debug ! ( "Diffing team `{}/{}`" , github_team. org, github_team. name) ;
139
+
138
140
// Ensure the team exists and is consistent
139
141
let team = match self . github . team ( & github_team. org , & github_team. name ) ? {
140
142
Some ( team) => team,
@@ -234,6 +236,11 @@ impl SyncGitHub {
234
236
}
235
237
236
238
fn diff_repo ( & self , expected_repo : & rust_team_data:: v1:: Repo ) -> anyhow:: Result < RepoDiff > {
239
+ debug ! (
240
+ "Diffing repo `{}/{}`" ,
241
+ expected_repo. org, expected_repo. name
242
+ ) ;
243
+
237
244
let actual_repo = match self . github . repo ( & expected_repo. org , & expected_repo. name ) ? {
238
245
Some ( r) => r,
239
246
None => {
You can’t perform that action at this time.
0 commit comments