blob: c7c7fb479afd186f0ad0f359c6d02b358d565d96 [file] [log] [blame]
#include "logging.hpp"
#include "webserver_run.hpp"
#include <exception>
int main(int /*argc*/, char** /*argv*/)
{
try
{
return run();
}
catch (const std::exception& e)
{
BMCWEB_LOG_CRITICAL("Threw exception to main: {}", e.what());
return -1;
}
catch (...)
{
BMCWEB_LOG_CRITICAL("Threw exception to main");
return -1;
}
}