Skip to content

Commit

Permalink
replace to common logger
Browse files Browse the repository at this point in the history
  • Loading branch information
wcy666103 committed Jun 21, 2024
1 parent d4443a6 commit 57b3e6a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
package org.apache.dubbo.rpc.cluster.router.condition.config.model;

import org.apache.dubbo.common.logger.ErrorTypeAwareLogger;
import org.apache.dubbo.common.logger.Logger;
import org.apache.dubbo.common.logger.LoggerFactory;
import org.apache.dubbo.common.utils.CollectionUtils;
import org.apache.dubbo.rpc.cluster.router.AbstractRouterRule;
Expand Down Expand Up @@ -46,7 +46,7 @@
*/
public class ConditionRuleParser {

private static final ErrorTypeAwareLogger logger = LoggerFactory.getErrorTypeAwareLogger(ConditionRuleParser.class);
private static final Logger logger = LoggerFactory.getLogger(ConditionRuleParser.class);

public static AbstractRouterRule parse(String rawRule) {
AbstractRouterRule rule;
Expand Down

0 comments on commit 57b3e6a

Please sign in to comment.