Skip to content

Commit

Permalink
Removed debugging code
Browse files Browse the repository at this point in the history
* Removed debugging code from NX Runner
  • Loading branch information
mmarineBlueQuartz committed Oct 24, 2023
1 parent 34dda4c commit ba91d28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/nxrunner/src/nxrunner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ int main(int argc, char* argv[])
return errorCode;
}
case ArgumentType::Execute: {
// try
try
{
auto result = ExecutePipeline(arguments[0]);
results.push_back(result);
Expand All @@ -497,11 +497,11 @@ int main(int argc, char* argv[])
return 1;
}
#endif
/*catch(const std::exception& exception)
catch(const std::exception& exception)
{
fmt::print("Exception: {}\n", exception.what());
return 1;
}*/
}
break;
}
case ArgumentType::Preflight: {
Expand Down

0 comments on commit ba91d28

Please sign in to comment.