Skip to content

Commit

Permalink
refactor: use cerr for error log
Browse files Browse the repository at this point in the history
  • Loading branch information
FaaizHaikal committed Apr 26, 2024
1 parent 03ec45e commit 7ef5224
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/action_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ int main(int argc, char * argv[])


if (argc < 3) {
std::cout << "Bad arguments!\n";
std::cout << help_message;
std::cerr << "Bad arguments!\n";
std::cerr << help_message;
return 0;
}

Expand Down

0 comments on commit 7ef5224

Please sign in to comment.