nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

commit 17a58be475c89296574651140ab8af6cfd5011e2
parent af1cf5b7494d4174a5011ddcc87768ab966b0743
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 13 Dec 2024 18:00:57 -0800

always show migration text

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Msrc/nostrdb.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nostrdb.c b/src/nostrdb.c @@ -4683,7 +4683,7 @@ static int ndb_run_migrations(struct ndb *ndb) } if (version < latest_version) - ndb_debug("nostrdb: migrating v%d -> v%d\n", + fprintf(stderr, "nostrdb: migrating v%d -> v%d\n", (int)version, (int)latest_version); for (i = version; i < latest_version; i++) {