Skip to content

Commit

Permalink
chore: remove spammy logging
Browse files Browse the repository at this point in the history
  • Loading branch information
karl-run committed Dec 20, 2023
1 parent b0d081a commit caacb9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/actions/azure.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// TODO don't disable eslint? :D
/* eslint-disable */
import { getAllAppNames, promptForAppName } from '../common/kubectl.ts'
import { log } from '../common/log.ts'
interface BearerTokenResponse {
access_token: string
}
Expand Down Expand Up @@ -51,5 +52,5 @@ export async function azure(appname: string | undefined | null, scope: string):

const token = ((await result.json()) as BearerTokenResponse).access_token

console.log(token)
log(token)
}
1 change: 0 additions & 1 deletion src/actions/sync-file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ export async function syncFileAcrossRepos(query: string): Promise<void> {
})

if (confirmResult.confirm) {
console.log(sourceRepo.source, targetRepos, fileToSync, commitMessage.message)
await copyFileToRepos(sourceRepo.source, targetRepos, fileToSync, commitMessage.message)
} else {
log(chalk.red('Aborting!'))
Expand Down

0 comments on commit caacb9c

Please sign in to comment.