campaignd: Increase verbosity of filesystem::io_exception exceptions
This commit is contained in:
parent
28c5179636
commit
a380128ade
1 changed files with 2 additions and 2 deletions
|
@ -862,8 +862,8 @@ int main()
|
|||
} catch(config::error& /*e*/) {
|
||||
std::cerr << "Could not parse config file\n";
|
||||
return 1;
|
||||
} catch(filesystem::io_exception& /*e*/) {
|
||||
std::cerr << "File I/O error\n";
|
||||
} catch(filesystem::io_exception& e) {
|
||||
std::cerr << "File I/O error: " << e.what() << "\n";
|
||||
return 2;
|
||||
} catch(std::bad_function_call& /*e*/) {
|
||||
std::cerr << "Bad request handler function call\n";
|
||||
|
|
Loading…
Add table
Reference in a new issue