diff --git a/cmd/algorand-indexer/main.go b/cmd/algorand-indexer/main.go index de022a5af..a8ed7c93a 100644 --- a/cmd/algorand-indexer/main.go +++ b/cmd/algorand-indexer/main.go @@ -82,7 +82,7 @@ var ( func indexerDbFromFlags(opts idb.IndexerDbOptions) (idb.IndexerDb, chan struct{}, error) { if postgresAddr != "" { db, ch, err := idb.IndexerDbByName("postgres", postgresAddr, opts, logger) - maybeFail(err, "could not init db, %v", err) + maybeFail(err, "unable to open database, if tables are not initialized ensure Conduit is running") return db, ch, nil } if dummyIndexerDb {