Skip to content

Commit

Permalink
Remove log when execute runtime plugin activator. (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
QilongZhang authored Jun 11, 2019
1 parent 337e6aa commit 558a414
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions runtime-sofa-boot-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@
<excludeArtifactId>jcl-over-slf4j</excludeArtifactId>
<excludeArtifactId>jul-to-slf4j</excludeArtifactId>
<excludeArtifactId>log4j-over-slf4j</excludeArtifactId>
<excludeArtifactId>logback-core</excludeArtifactId>
<excludeArtifactId>logback-classic</excludeArtifactId>
<excludeArtifactId>snakeyaml</excludeArtifactId>
<excludeArtifactId>validation-api</excludeArtifactId>
<excludeArtifactId>validation-api</excludeArtifactId>
<excludeArtifactId>log-sofa-boot-starter</excludeArtifactId>
</excludeArtifactIds>

</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import com.alipay.sofa.ark.spi.service.event.EventHandler;
import com.alipay.sofa.runtime.integration.invoke.DynamicJvmServiceProxyFinder;
import com.alipay.sofa.runtime.integration.service.SofaEventHandler;
import com.alipay.sofa.runtime.spi.log.SofaLogger;

/**
* @author qilong.zql
Expand All @@ -30,7 +29,6 @@
public class SofaRuntimeActivator implements PluginActivator {
@Override
public void start(PluginContext context) {
SofaLogger.info("SofaRuntime is activating.");
context.publishService(EventHandler.class, new SofaEventHandler());
context.publishService(DynamicJvmServiceProxyFinder.class,
DynamicJvmServiceProxyFinder.getDynamicJvmServiceProxyFinder());
Expand Down

0 comments on commit 558a414

Please sign in to comment.