Skip to content

Commit 44bbf71

Browse files
committed
chore: more debug info
1 parent 693e756 commit 44bbf71

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/createGACFile.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ import { writeSync, existsSync } from "fs";
2020
// Set up Google Application Credentials for use by the Firebase CLI
2121
// https://cloud.google.com/docs/authentication/production#finding_credentials_automatically
2222
export async function createGacFile(googleApplicationCredentials: string) {
23-
console.debug("processing GAC credentials: " + googleApplicationCredentials)
23+
console.log("processing GAC credentials: " + googleApplicationCredentials)
2424
try {
2525
if (existsSync(googleApplicationCredentials)) {
2626
return googleApplicationCredentials;
2727
}
28+
console.log("creating temporary file for credentials...")
2829
}
2930
catch (e) {
3031
console.log("failed to check existence of %s\nerror: %O", googleApplicationCredentials, e)

0 commit comments

Comments
 (0)