Skip to content

Commit a838060

Browse files
committed
chore: remove logging
1 parent 16f78b7 commit a838060

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/proxy/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,8 @@ export const proxyPreparations = async () => {
4444
const allowedList: Repo[] = await getRepos();
4545

4646
await Promise.all(defaultAuthorisedRepoList.map(async (x) => {
47-
console.log('x', x);
48-
console.log('allowedList', allowedList);
4947
const found = allowedList.find((y) => y.project === x.project && x.name === y.name);
50-
console.log('found', found);
48+
5149
if (!found) {
5250
await createRepo(x);
5351
await addUserCanPush(x.name, 'admin');

0 commit comments

Comments
 (0)