Skip to content

Commit

Permalink
[dbus] remove info logs for property handler
Browse files Browse the repository at this point in the history
  • Loading branch information
Irving-cl committed Jul 17, 2023
1 parent d49d9b0 commit 1d814f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dbus/server/dbus_object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 1d814f5

Please sign in to comment.