summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-11 00:09:12 -0400
committerbd <bdunahu@operationnull.com>2025-03-11 00:09:12 -0400
commit11182ea41cc5f453b06d769dea6e157aa9c3cf86 (patch)
treea37a0e14ec5cef442d979852876dd307c6d4bf22 /src/main.cc
parent183ddf3d0d4c9eb6fa6470f45dbb4041c48eebab (diff)
cli display clock cycle, parse ';' delimited commands
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc
index f2f416d..1259729 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -21,7 +21,7 @@ static std::string banner =
"_/ _/ _/ _/_/_/ _/ _/ _/ _/ _/_/_/ _/ \n"
" _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ \n"
" _/ _/ _/_/_/_/ _/_/_/ _/ _/_/ _/ _/ _/ \n"
- " _/_/ _/_/ \n";
+ " _/_/ _/_/ ";
static void print_version_number() { std::cout << banner << version_number << '\n'; }
static void err()
@@ -79,5 +79,8 @@ int main(int argc, char **argv)
}
cli.run();
+
+ global_log->log(INFO, "Cleaning up...");
+ global_log->log(INFO, "Goodbye!");
return EXIT_SUCCESS;
}