Return unsuccessful exit code if error occurs

This commit is contained in:
Ruslan Baratov
2015-09-10 22:58:53 +03:00
parent 88cfb1931b
commit 567954425b
2 changed files with 7 additions and 2 deletions

View File

@@ -25,6 +25,7 @@
//
// spdlog usage example
//
#include <cstdlib> // EXIT_FAILURE
#include <iostream>
#include "spdlog/spdlog.h"
@@ -106,7 +107,9 @@ int main(int, char*[])
catch (const spd::spdlog_ex& ex)
{
std::cout << "Log failed: " << ex.what() << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}