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

Commit 5471dca0 authored by Ken Chen's avatar Ken Chen
Browse files

Unify log tag of DNS resolver

Set LOG_TAG to "resolv" on DNS resolver. Then, the log can be filtered
by "adb logcat [filterspecs]", such as "adb logcat *:S resolv:*", or
'grep'.

Test: resolv_integration_test pass
Change-Id: Ic4f97685d487257560ec3dfe62bab0d187bf9d93
parent 72e359db
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

#define LOG_TAG "Dns64Configuration"
#define LOG_TAG "resolv"
#define DBG 0

#include "Dns64Configuration.h"
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@
#include <sys/socket.h>
#include <sys/types.h>

#define LOG_TAG "DnsProxyListener"
#define LOG_TAG "resolv"

#include <algorithm>
#include <list>
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

#define LOG_TAG "DnsResolverService"
#define LOG_TAG "resolv"

#include "DnsResolverService.h"

+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

#define LOG_TAG "DnsTlsDispatcher"
#define LOG_TAG "resolv"
//#define LOG_NDEBUG 0

#include "DnsTlsDispatcher.h"
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

#define LOG_TAG "DnsTlsQueryMap"
#define LOG_TAG "resolv"
//#define LOG_NDEBUG 0

#include "DnsTlsQueryMap.h"
Loading