We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c53ccd commit 995fab1Copy full SHA for 995fab1
src/emulator/functionsEmulator.ts
@@ -459,15 +459,12 @@ export class FunctionsEmulator implements EmulatorInstance {
459
460
async start(): Promise<void> {
461
const credentialEnv = await this.getCredentialsEnvironment();
462
-
463
- console.log("got creds env");
464
for (const e of this.staticBackends) {
465
e.env = { ...credentialEnv, ...e.env };
466
}
467
468
if (Object.keys(this.adminSdkConfig || {}).length <= 1) {
469
const adminSdkConfig = await getProjectAdminSdkConfigOrCached(this.args.projectId);
470
- console.log("got admin sdk");
471
if (adminSdkConfig) {
472
this.adminSdkConfig = adminSdkConfig;
473
} else {
0 commit comments