Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

optimize: logger class miswrite #2749

Merged
merged 2 commits into from
May 31, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,18 @@
*/
package io.seata.saga.proctrl.process.impl;

import java.util.Map;

import io.seata.common.exception.FrameworkErrorCode;
import io.seata.common.exception.FrameworkException;
import io.seata.saga.proctrl.ProcessContext;
import io.seata.saga.proctrl.ProcessType;
import io.seata.saga.proctrl.handler.ProcessHandler;
import io.seata.saga.proctrl.handler.RouterHandler;
import io.seata.saga.proctrl.impl.ProcessControllerImpl;
import io.seata.saga.proctrl.process.BusinessProcessor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Map;
l81893521 marked this conversation as resolved.
Show resolved Hide resolved

/**
* Customizable Business Processor
*
Expand All @@ -36,7 +35,7 @@
*/
public class CustomizeBusinessProcessor implements BusinessProcessor {

private static final Logger LOGGER = LoggerFactory.getLogger(ProcessControllerImpl.class);
private static final Logger LOGGER = LoggerFactory.getLogger(CustomizeBusinessProcessor.class);

private Map<String, ProcessHandler> processHandlers;

Expand Down