Skip to content

Commit

Permalink
chore: Change LogLevel from debug to verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
wba2hi committed Oct 24, 2023
1 parent bcb6933 commit 968181e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ internal class DataBrokerSubscriber(private val dataBrokerTransporter: DataBroke
if (subscription == null) {
subscription = dataBrokerTransporter.subscribe(vssPath, field)
subscriptions[identifier] = subscription
Log.d(TAG, "Created $subscription")
Log.v(TAG, "Created $subscription")
}

subscription.listeners.register(propertyListener)
Expand All @@ -70,7 +70,7 @@ internal class DataBrokerSubscriber(private val dataBrokerTransporter: DataBroke
subscription.listeners.unregister(propertyListener)

if (subscription.listeners.isEmpty()) {
Log.d(TAG, "Removing $subscription: no more listeners")
Log.v(TAG, "Removing $subscription: no more listeners")
subscription.cancel()
subscriptions.remove(identifier)
}
Expand Down

0 comments on commit 968181e

Please sign in to comment.