diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-03-12 00:19:38 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-03-12 00:19:38 -0400 |
commit | fd99721d0e8cbb28404986c395f0df0bfeae6fc9 (patch) | |
tree | ffeeda6d3b81be983fb02f67ad5a08c595d3dc27 | |
parent | fd51ac5e5f38760a4c765d54649ab838527e7feb (diff) | |
download | stasis-fd99721d0e8cbb28404986c395f0df0bfeae6fc9.tar.gz |
Wording and indent
-rw-r--r-- | src/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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); } |