这是indexloc提供的服务,不要输入任何密码
Skip to content
This repository was archived by the owner on Mar 4, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import org.slf4j.LoggerFactory;

public class BasicContext implements ChaosMonkey.Context {
private static final Logger LOGGER = LoggerFactory.getLogger(BasicMonkeyServer.class);
private static final Logger LOGGER = LoggerFactory.getLogger(BasicContext.class);
private MonkeyScheduler scheduler;
private MonkeyCalendar calendar;
private MonkeyConfiguration config;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import com.netflix.simianarmy.chaos.ChaosCrawler.InstanceGroup;

public class BasicChaosInstanceSelector implements ChaosInstanceSelector {
private static final Logger LOGGER = LoggerFactory.getLogger(ChaosInstanceSelector.class);
private static final Logger LOGGER = LoggerFactory.getLogger(BasicChaosInstanceSelector.class);
private static final Random RANDOM = new Random();

protected Logger logger() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import org.slf4j.LoggerFactory;

public class BasicChaosMonkey extends ChaosMonkey {
private static final Logger LOGGER = LoggerFactory.getLogger(ChaosMonkey.class);
private static final Logger LOGGER = LoggerFactory.getLogger(BasicChaosMonkey.class);
private static final String NS = "simianarmy.chaos.";

private MonkeyConfiguration cfg;
Expand Down