mirror of https://gitee.com/bigwinds/arangodb
fix logtopic
This commit is contained in:
parent
36ff459cfb
commit
cb3dd9683f
|
@ -52,11 +52,11 @@ void ListenTask::start() {
|
||||||
_acceptor->open();
|
_acceptor->open();
|
||||||
_bound = true;
|
_bound = true;
|
||||||
} catch (boost::system::system_error const& err) {
|
} 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();
|
<< "' with error: " << err.what();
|
||||||
return;
|
return;
|
||||||
} catch (std::exception const& err) {
|
} 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();
|
<< "' with error: " << err.what();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue