Compress network error during notification #4932
This commit is contained in:
parent
4b2fc8c4c9
commit
e1e38bd3a2
|
@ -223,13 +223,13 @@ ToolApp::notifyActivation()
|
||||||
std::cout << ARCH->internet().get(ss.str()) << std::endl;
|
std::cout << ARCH->internet().get(ss.str()) << std::endl;
|
||||||
}
|
}
|
||||||
catch (std::exception& e) {
|
catch (std::exception& e) {
|
||||||
LOG((CLOG_CRIT "An error occurred during notification: %s\n", e.what()));
|
LOG((CLOG_NOTE "An error occurred during notification: %s\n", e.what()));
|
||||||
}
|
}
|
||||||
catch (...) {
|
catch (...) {
|
||||||
LOG((CLOG_CRIT "An unknown error occurred during notification.\n"));
|
LOG((CLOG_NOTE "An unknown error occurred during notification.\n"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
LOG((CLOG_DEBUG "notification failed"));
|
LOG((CLOG_NOTE "notification failed"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue