本文整理汇总了Java中org.embulk.spi.Exec.getLogger方法的典型用法代码示例。如果您正苦于以下问题:Java Exec.getLogger方法的具体用法?Java Exec.getLogger怎么用?Java Exec.getLogger使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.embulk.spi.Exec
的用法示例。
在下文中一共展示了Exec.getLogger方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testStopControllerShowOverallMessage
import org.embulk.spi.Exec; //导入方法依赖的package包/类
@Test
public void testStopControllerShowOverallMessage(@Mocked final Logger logger) {
new NonStrictExpectations() {{
Exec.getLogger(SpeedometerFilterPlugin.class); result = logger;
}};
SpeedometerSpeedAggregator aggregator = new SpeedometerSpeedAggregator();
long nowTime = System.currentTimeMillis();
aggregator.startController(controller, nowTime);
aggregator.startController(controller, nowTime);
aggregator.stopController(controller);
aggregator.stopController(controller);
new Verifications() {{
logger.info(withAny("Overall message.")); times = 2;
}};
}
示例2: SolrPageOutput
import org.embulk.spi.Exec; //导入方法依赖的package包/类
public SolrPageOutput(SolrClient client, Schema schema, PluginTask task) {
this.logger = Exec.getLogger(getClass());
this.client = client;
this.pageReader = new PageReader(schema);
this.schema = schema;
this.task = task;
this.bulkSize = task.getBulkSize();
this.maxRetry = task.getMaxRetry();
}
示例3: SolrOutputPlugin
import org.embulk.spi.Exec; //导入方法依赖的package包/类
@Inject
public SolrOutputPlugin() {
logger = Exec.getLogger(getClass());
}
示例4: transaction
import org.embulk.spi.Exec; //导入方法依赖的package包/类
@Override
public ConfigDiff transaction(ConfigSource config,
Schema schema, int taskCount,
OutputPlugin.Control control)
{
PluginTask task = config.loadConfig(PluginTask.class);
logger = Exec.getLogger(getClass());
if (task.getResultDir().isPresent() && task.getResultDir().get() != null) {
File resultDir = new File(task.getResultDir().get());
if (!resultDir.exists() || !resultDir.isDirectory()) {
logger.error("{} is not exist or is not directory.", task.getResultDir().get());
throw new RuntimeException(task.getResultDir().get() + " is not exist or is not directory.");
}
}
final String username = task.getUsername();
final String password = task.getPassword();
final String loginEndpoint = task.getLoginEndpoint().get();
try {
if (client == null) {
ConnectorConfig connectorConfig = new ConnectorConfig();
connectorConfig.setUsername(username);
connectorConfig.setPassword(password);
connectorConfig.setAuthEndpoint(loginEndpoint + "/services/Soap/u/" +task.getVersion().get() + "/");
client = Connector.newConnection(connectorConfig);
GetUserInfoResult userInfo = client.getUserInfo();
logger.info("login successful with {}", userInfo.getUserName());
externalIdToObjectNameMap = new HashMap<>();
DescribeSObjectResult describeResult = client.describeSObject(task.getSObject());
for (Field field : describeResult.getFields()) {
if (field.getType() == FieldType.reference) {
externalIdToObjectNameMap.put(field.getRelationshipName(), field.getReferenceTo()[0]);
}
}
}
} catch(ConnectionException ex) {
logger.error("Login error. Please check your credentials.");
throw new RuntimeException(ex);
}
control.run(task.dump());
return Exec.newConfigDiff();
}
示例5: JsonlParserPlugin
import org.embulk.spi.Exec; //导入方法依赖的package包/类
public JsonlParserPlugin()
{
this.log = Exec.getLogger(JsonlParserPlugin.class);
}
示例6: getLogger
import org.embulk.spi.Exec; //导入方法依赖的package包/类
Logger getLogger() {
return Exec.getLogger(SpeedometerFilterPlugin.class);
}