Remove some unneeded logging on startup

This commit is contained in:
Jackson Harper
2022-02-12 09:16:45 -08:00
parent 28d7eafd1f
commit 28a208ba2c

View File

@ -118,8 +118,10 @@ export const createApp = (): {
}
const main = async (): Promise<void> => {
const entities = await initEntities()
console.log('created entitites', entities)
// If creating the DB entities fails, we want this to throw
// so the container will be restarted and not come online
// as healthy.
await initEntities()
const { app, apollo, httpServer } = createApp()