cli: Remove useless debug logging

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2021-08-17 09:32:25 +02:00
parent 6817492aa9
commit f3bba3d2bd
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');
});