fix(main): correct error logging to standard error output for usage message
This commit is contained in:
parent
f172987e63
commit
9bacc4f8a4
@ -12,7 +12,7 @@ int main(int argc, char **argv)
|
||||
{
|
||||
if (argc < 2)
|
||||
{
|
||||
Log::error("Usage: " + std::string(argv[0]) + " <config_file_path>"); // NOLINT
|
||||
std::cerr << "Usage: " + std::string(argv[0]) + " <config_file_path>"; // NOLINT
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user