From 70908a8ab5b6c914942e6e3649ff0d8574d49fd7 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Wed, 21 Dec 2022 21:23:51 -0500 Subject: [PATCH] One more correction related to the "verbose" level of the "load" command, without which the previous commit does nothing. --- database/DBio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/DBio.c b/database/DBio.c index 0cdeebbc..31dbd123 100644 --- a/database/DBio.c +++ b/database/DBio.c @@ -92,7 +92,7 @@ char *DBSuffix = ".mag"; int DBLambda[2] = {1, 1}; /* See database.h for verbose levels */ -unsigned char DBVerbose = DB_VERBOSE_WARN; +unsigned char DBVerbose = DB_VERBOSE_ALL; /* Global name of backup file for this session */ static char *DBbackupFile = (char *)NULL;