nghttpx: Log when backend group is shared
This commit is contained in:
parent
e41d8c2f62
commit
5339c1774c
|
@ -181,6 +181,10 @@ Worker::Worker(struct ev_loop *loop, SSL_CTX *sv_ssl_ctx, SSL_CTX *cl_ssl_ctx,
|
||||||
if (it == end) {
|
if (it == end) {
|
||||||
dst.shared_addr = shared_addr;
|
dst.shared_addr = shared_addr;
|
||||||
} else {
|
} else {
|
||||||
|
if (LOG_ENABLED(INFO)) {
|
||||||
|
LOG(INFO) << dst.pattern << " shares the same backend group with "
|
||||||
|
<< (*it).pattern;
|
||||||
|
}
|
||||||
dst.shared_addr = (*it).shared_addr;
|
dst.shared_addr = (*it).shared_addr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue