File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/@apphosting/adapter-angular/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments