diff --git a/src/dbus/server/dbus_object.cpp b/src/dbus/server/dbus_object.cpp index 65e093535ad..8788d9a7029 100644 --- a/src/dbus/server/dbus_object.cpp +++ b/src/dbus/server/dbus_object.cpp @@ -115,7 +115,7 @@ DBusHandlerResult DBusObject::MessageHandler(DBusConnection *aConnection, DBusMe if (dbus_message_get_type(aMessage) == DBUS_MESSAGE_TYPE_METHOD_CALL && iter != mMethodHandlers.end()) { - otbrLogInfo("Handling method %s", memberName.c_str()); + otbrLogDebg("Handling method %s", memberName.c_str()); if (otbrLogGetLevel() >= OTBR_LOG_DEBUG) { DumpDBusMessage(*aMessage); @@ -144,7 +144,7 @@ void DBusObject::GetPropertyMethodHandler(DBusRequest &aRequest) { auto propertyIter = mGetPropertyHandlers.find(interfaceName); - otbrLogInfo("GetProperty %s.%s", interfaceName.c_str(), propertyName.c_str()); + otbrLogDebg("GetProperty %s.%s", interfaceName.c_str(), propertyName.c_str()); VerifyOrExit(propertyIter != mGetPropertyHandlers.end(), error = OT_ERROR_NOT_FOUND); { DBusMessageIter replyIter;