From 19243d49e1884e24ee62feab0e8346a640f1e769 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 13 Dec 2024 18:00:57 -0800 Subject: [PATCH] nostrdb: always show migration text Signed-off-by: William Casarin --- nostrdb/src/nostrdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostrdb/src/nostrdb.c b/nostrdb/src/nostrdb.c index 79354d36..0c56c102 100644 --- a/nostrdb/src/nostrdb.c +++ b/nostrdb/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++) {