Skip to content

Commit

Permalink
Updated Scarab to v3.11.0 and added stopping logging to executables
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoblath committed Oct 10, 2024
1 parent fe6b59c commit 96f2165
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions examples/run_oscillator_service_endpoints.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ int main( int argc, char** argv )

CLI11_PARSE( the_main, argc, argv );

STOP_LOGGING;

return the_return;
}

Expand Down
2 changes: 2 additions & 0 deletions examples/run_oscillator_service_hub.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ int main( int argc, char** argv )

CLI11_PARSE( the_main, argc, argv );

STOP_LOGGING;

return the_return;
}

Expand Down
2 changes: 2 additions & 0 deletions examples/run_simple_service.cc
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,7 @@ int main( int argc, char** argv )

CLI11_PARSE( the_main, argc, argv );

STOP_LOGGING;

return the_return;
}
2 changes: 2 additions & 0 deletions executables/dl-agent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ int main( int argc, char** argv )
// Parse CL options and run the application
CLI11_PARSE( the_main, argc, argv );

STOP_LOGGING;

return the_agent.get_return() / 100; // this exit code is the class of the dripline return code
}

2 changes: 2 additions & 0 deletions executables/dl-mon.cc
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ int main( int argc, char** argv )
// Parse CL options and run the application
CLI11_PARSE( the_main, argc, argv );

STOP_LOGGING;

return the_return;
}

Expand Down

0 comments on commit 96f2165

Please sign in to comment.