mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-11 16:46:16 +00:00
Support verbose logging
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user