Skip to content

Commit 39458c3

Browse files
committed
lint
1 parent ced2a0e commit 39458c3

File tree

1 file changed

+2
-2
lines changed
  • packages/@apphosting/adapter-angular/src

1 file changed

+2
-2
lines changed

packages/@apphosting/adapter-angular/src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export async function checkBuildConditions(opts: BuildOptions): Promise<void> {
9191
const { builder } = workspaceProject.targets.get(target)!;
9292
angularBuilder = builder;
9393
} catch (error) {
94-
logger.warn("failed to determine angular builder from the workspace api: ", error);
94+
logger.debug("failed to determine angular builder from the workspace api: ", error);
9595
try {
9696
const root = process.cwd();
9797
const angularJSON = JSON.parse(readFileSync(join(root, "angular.json")).toString());
@@ -105,7 +105,7 @@ export async function checkBuildConditions(opts: BuildOptions): Promise<void> {
105105
throw new Error("Unable to determine the application to deploy");
106106
angularBuilder = angularJSON.projects[project].architect.build.builder;
107107
} catch (error) {
108-
logger.warn("failed to determine angular builder from parsing angular.json: ", error);
108+
logger.debug("failed to determine angular builder from parsing angular.json: ", error);
109109
}
110110
}
111111

0 commit comments

Comments
 (0)