Support verbose logging

This commit is contained in:
momo5502
2025-01-24 15:52:34 +01:00
parent 0698120c71
commit e175c83e25

View File

@@ -11,6 +11,7 @@ namespace
{
bool use_gdb{false};
bool concise_logging{false};
bool verbose_logging{false};
std::string registry_path{"./registry"};
};
@@ -200,6 +201,10 @@ namespace
{
options.use_gdb = true;
}
else if (arg == "-v")
{
options.verbose_logging = true;
}
else if (arg == "-c")
{
options.concise_logging = true;