From fd99721d0e8cbb28404986c395f0df0bfeae6fc9 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 12 Mar 2024 00:19:38 -0400 Subject: Wording and indent --- src/main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index e93da28..ca0da52 100644 --- a/src/main.c +++ b/src/main.c @@ -223,7 +223,7 @@ int main(int argc, char *argv[], char *arge[]) { printf(BANNER, VERSION, AUTHOR); - msg(OMC_MSG_L1, "Initializing\n"); + msg(OMC_MSG_L1, "Setup\n"); // Expose variables for use with the template engine // NOTE: These pointers are populated by delivery_init() so please avoid using @@ -296,8 +296,9 @@ int main(int argc, char *argv[], char *arge[]) { exit(1); } + msg(OMC_MSG_L2, "Initializing delivery context\n"); if (delivery_init(&ctx, ini, cfg)) { - msg(OMC_MSG_ERROR | OMC_MSG_L1, "Failed to initialize delivery context\n"); + msg(OMC_MSG_ERROR | OMC_MSG_L2, "Failed to initialize delivery context\n"); exit(1); } -- cgit