mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Remove some unneeded logging on startup
This commit is contained in:
parent
28d7eafd1f
commit
28a208ba2c
1 changed files with 4 additions and 2 deletions
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue