Skip to content

Commit

Permalink
Use platform help in terminate
Browse files Browse the repository at this point in the history
  • Loading branch information
tomadamatkinson committed Feb 28, 2024
1 parent 172526a commit ec1f508
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions framework/platform/platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,6 @@ ExitCode Platform::initialize(const std::vector<Plugin *> &plugins)
// Process command line arguments
if (!parser->parse(associate_plugins(plugins)))
{
for (auto &help : parser->help())
{
LOGI(help);
}
return ExitCode::Help;
}

Expand Down Expand Up @@ -123,10 +119,6 @@ ExitCode Platform::initialize(const std::vector<Plugin *> &plugins)
if (!app_requested())
{
LOGE("An app was not requested, can not continue");
for (auto &help : parser->help())
{
LOGI(help);
}
return ExitCode::Help;
}

Expand Down

0 comments on commit ec1f508

Please sign in to comment.