Merge pull request #6846 from backstage/jhaals/drop-debug

cli: Remove useless debug logging
This commit is contained in:
Johan Haals
2021-08-17 16:52:43 +02:00
committed by GitHub
2 changed files with 5 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Remove debug logging
-1
View File
@@ -28,7 +28,6 @@ export async function serveBackend(options: BackendServeOptions) {
const compiler = webpack(config, (err: Error | undefined) => {
if (err) {
console.log('here');
console.error(err);
} else console.log('Build succeeded');
});