Skip to content
This repository has been archived by the owner on Mar 12, 2023. It is now read-only.

Commit

Permalink
Updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Arne Wouters committed Aug 25, 2020
1 parent aa9d91b commit b114e13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Use the following command to build and run the executable target.
```bash
cmake -Hbytra -Bbuild/bytra
cmake --build build/bytra
./build/bytra/Bytra
./build/bytra/Bytra --help
```

### Build and run test suite
Expand Down
3 changes: 1 addition & 2 deletions bytra/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ int main(int argc, char **argv) {
std::cout << " / /_/ / / / / / / _, _// ___ |" << std::endl;
std::cout << "/_____/ /_/ /_/ /_/ |_|/_/ |_| Made by Arne." << std::endl << std::endl;

std::cout << "Setting up BYTRA" << std::endl;

// CLI setup
CLI::App app("BYTRA");
std::string strategy;
Expand All @@ -54,6 +52,7 @@ int main(int argc, char **argv) {
// Register signal and signal handler
signal(SIGINT, signal_callback_handler);

std::cout << "Setting up BYTRA" << std::endl;
std::cout << " - Logging setup" << std::flush;

// spdlog setup
Expand Down

0 comments on commit b114e13

Please sign in to comment.