1
0
Fork 0

fix logtopic

This commit is contained in:
Jan Christoph Uhde 2017-03-21 15:27:52 +01:00
parent 36ff459cfb
commit cb3dd9683f
1 changed files with 2 additions and 2 deletions

View File

@ -52,11 +52,11 @@ void ListenTask::start() {
_acceptor->open();
_bound = true;
} catch (boost::system::system_error const& err) {
LOG_TOPIC(WARN, arangodb::Logger::FIXME) << "failed to open endpoint '" << _endpoint->specification()
LOG_TOPIC(WARN, arangodb::Logger::COMMUNICATION) << "failed to open endpoint '" << _endpoint->specification()
<< "' with error: " << err.what();
return;
} catch (std::exception const& err) {
LOG_TOPIC(WARN, arangodb::Logger::FIXME) << "failed to open endpoint '" << _endpoint->specification()
LOG_TOPIC(WARN, arangodb::Logger::COMMUNICATION) << "failed to open endpoint '" << _endpoint->specification()
<< "' with error: " << err.what();
}