Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f67fba57 authored by Hungming Chen's avatar Hungming Chen Committed by Automerger Merge Worker
Browse files

Change logging level from ERROR to INFO for no DNS64 prefix am: 2b0440bd am:...

Change logging level from ERROR to INFO for no DNS64 prefix am: 2b0440bd am: 4164cd46 am: 2f66f83e

Change-Id: Ideec966b573059a3e7bea1cda801e34152136c6c
parents 964ed885 2f66f83e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -281,7 +281,7 @@ void ResolverController::stopPrefix64Discovery(int32_t netId) {
int ResolverController::getPrefix64(unsigned netId, netdutils::IPPrefix* prefix) {
    netdutils::IPPrefix p = mDns64Configuration.getPrefix64(netId);
    if (p.family() != AF_INET6 || p.length() == 0) {
        LOG(ERROR) << "No valid NAT64 prefix (" << netId << ", " << p.toString().c_str() << ")";
        LOG(INFO) << "No valid NAT64 prefix (" << netId << ", " << p.toString().c_str() << ")";

        return -ENOENT;
    }