Skip to content

Commit

Permalink
Remove needless logging from PagedTopicSubscription
Browse files Browse the repository at this point in the history
(merge main -> ce/main 107121)

[git-p4: depot-paths = "//dev/coherence-ce/main/": change = 107126]
  • Loading branch information
thegridman committed Feb 27, 2024
1 parent 819b8f3 commit f8b90c0
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
/*
* Copyright (c) 2000, 2023, Oracle and/or its affiliates.
* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* https://oss.oracle.com/licenses/upl.
*/
package com.tangosol.internal.net.topic.impl.paged.model;

import com.oracle.coherence.common.base.Logger;
import com.oracle.coherence.common.util.SafeClock;

import com.tangosol.internal.net.topic.ChannelAllocationStrategy;
Expand Down Expand Up @@ -170,7 +169,6 @@ public void update(PagedTopicSubscription subscription)
m_mapSubscriberChannels.putAll(subscription.m_mapSubscriberChannels);
m_mapSubscriberTimestamp.keySet().retainAll(subscription.m_mapSubscriberTimestamp.keySet());
m_mapSubscriberTimestamp.putAll(subscription.m_mapSubscriberTimestamp);
Logger.finest("Updated " + this);
}
finally
{
Expand Down

0 comments on commit f8b90c0

Please sign in to comment.