io.fabric8.maven.docker.util.Logger.error()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(8.3k)|赞(0)|评价(0)|浏览(200)

本文整理了Java中io.fabric8.maven.docker.util.Logger.error()方法的一些代码示例,展示了Logger.error()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logger.error()方法的具体详情如下:
包路径:io.fabric8.maven.docker.util.Logger
类名称:Logger
方法名:error

Logger.error介绍

[英]Severe errors
[中]严重错误

代码示例

代码示例来源:origin: fabric8io/docker-maven-plugin

  1. @Override
  2. public void error(String error) {
  3. logger.error("%s", error);
  4. }

代码示例来源:origin: fabric8io/docker-maven-plugin

  1. private void logException(Exception exp) {
  2. if (exp.getCause() != null) {
  3. log.error("%s [%s]", exp.getMessage(), exp.getCause().getMessage());
  4. } else {
  5. log.error("%s", exp.getMessage());
  6. }
  7. }

代码示例来源:origin: fabric8io/docker-maven-plugin

  1. @Override
  2. public void run() {
  3. try {
  4. stopStartedContainers(keepContainer, removeVolumes, removeCustomNetworks, null);
  5. } catch (DockerAccessException | ExecException e) {
  6. log.error("Error while stopping containers: %s", e.getMessage());
  7. }
  8. }
  9. });

代码示例来源:origin: fabric8io/docker-maven-plugin

  1. @Override
  2. public void shutdown() {
  3. try {
  4. delegate.close();
  5. } catch (IOException exp) {
  6. log.error("Error while closing HTTP client: " + exp,exp);
  7. }
  8. }

代码示例来源:origin: fabric8io/docker-maven-plugin

  1. private void executeBuildPlugins() {
  2. try {
  3. Enumeration<URL> dmpPlugins = Thread.currentThread().getContextClassLoader().getResources(DMP_PLUGIN_DESCRIPTOR);
  4. while (dmpPlugins.hasMoreElements()) {
  5. URL dmpPlugin = dmpPlugins.nextElement();
  6. File outputDir = getAndEnsureOutputDirectory();
  7. processDmpPluginDescription(dmpPlugin, outputDir);
  8. }
  9. } catch (IOException e) {
  10. log.error("Cannot load dmp-plugins from %s", DMP_PLUGIN_DESCRIPTOR);
  11. }
  12. }

代码示例来源:origin: fabric8io/docker-maven-plugin

  1. final AssemblyFiles files = archiveService.getAssemblyFiles(imageConfig, mojoParameters);
  2. if (files.isEmpty()) {
  3. log.error("No assembly files for %s. Are you sure you invoked together with the `package` goal?", imageConfig.getDescription());
  4. throw new MojoExecutionException("No files to watch found for " + imageConfig);

代码示例来源:origin: fabric8io/docker-maven-plugin

  1. public void wait(ImageConfiguration imageConfig, Properties projectProperties, String containerId) throws IOException {
  2. List<WaitChecker> checkers = prepareWaitCheckers(imageConfig, projectProperties, containerId);
  3. int timeout = getTimeOut(imageConfig);
  4. if (checkers.isEmpty()) {
  5. if (timeout > 0) {
  6. log.info("%s: Pausing for %d ms", imageConfig.getDescription(), timeout);
  7. WaitUtil.sleep(timeout);
  8. }
  9. return;
  10. }
  11. String logLine = extractCheckerLog(checkers);
  12. ContainerRunningPrecondition precondition = new ContainerRunningPrecondition(dockerAccess, containerId);
  13. try {
  14. long waited = WaitUtil.wait(precondition, timeout, checkers);
  15. log.info("%s: Waited %s %d ms", imageConfig.getDescription(), logLine, waited);
  16. } catch (WaitTimeoutException exp) {
  17. String desc = String.format("%s: Timeout after %d ms while waiting %s",
  18. imageConfig.getDescription(), exp.getWaited(),
  19. logLine);
  20. log.error(desc);
  21. throw new IOException(desc);
  22. } catch (PreconditionFailedException exp) {
  23. String desc = String.format("%s: Container stopped with exit code %d unexpectedly after %d ms while waiting %s",
  24. imageConfig.getDescription(), precondition.getExitCode(), exp.getWaited(),
  25. logLine);
  26. log.error(desc);
  27. throw new IOException(desc);
  28. }
  29. }

代码示例来源:origin: fabric8io/docker-maven-plugin

  1. @Override
  2. public void run() {
  3. List<AssemblyFiles.Entry> entries = files.getUpdatedEntriesAndRefresh();
  4. if (entries != null && entries.size() > 0) {
  5. try {
  6. log.info("%s: Assembly changed. Copying changed files to container ...", imageConfig.getDescription());
  7. File changedFilesArchive = archiveService.createChangedFilesArchive(entries, files.getAssemblyDirectory(),
  8. imageConfig.getName(), mojoParameters);
  9. dockerAccess.copyArchive(watcher.getContainerId(), changedFilesArchive, containerBaseDir);
  10. callPostExec(watcher);
  11. } catch (MojoExecutionException | IOException | ExecException e) {
  12. log.error("%s: Error when copying files to container %s: %s",
  13. imageConfig.getDescription(), watcher.getContainerId(), e.getMessage());
  14. }
  15. }
  16. }
  17. };

代码示例来源:origin: fabric8io/docker-maven-plugin

  1. log.error("Error occurred during container startup, shutting down...");
  2. runService.stopStartedContainers(keepContainer, removeVolumes, autoCreateCustomNetworks, getGavLabel());

代码示例来源:origin: fabric8io/docker-maven-plugin

  1. @Override
  2. public void run() {
  3. List<AssemblyFiles.Entry> entries = files.getUpdatedEntriesAndRefresh();
  4. if (entries != null && entries.size() > 0) {
  5. try {
  6. log.info("%s: Assembly changed. Rebuild ...", imageConfig.getDescription());
  7. if (watcher.getWatchContext().getImageCustomizer() != null) {
  8. log.info("%s: Customizing the image ...", imageConfig.getDescription());
  9. watcher.getWatchContext().getImageCustomizer().execute(imageConfig);
  10. }
  11. buildService.buildImage(imageConfig, null, buildContext);
  12. String name = imageConfig.getName();
  13. watcher.setImageId(queryService.getImageId(name));
  14. if (doRestart) {
  15. restartContainer(watcher);
  16. }
  17. callPostGoal(watcher);
  18. } catch (Exception e) {
  19. log.error("%s: Error when rebuilding - %s", imageConfig.getDescription(), e);
  20. }
  21. }
  22. }
  23. };

代码示例来源:origin: fabric8io/docker-maven-plugin

  1. execInContainer(containerId, descriptor.getPreStop(), descriptor.getImageConfiguration());
  2. } catch (DockerAccessException e) {
  3. log.error("%s", e.getMessage());
  4. } catch (ExecException e) {
  5. if (descriptor.isBreakOnError()) {

代码示例来源:origin: fabric8io/fabric8-maven-plugin

  1. /**
  2. * Logs an error applying some JSON to Kubernetes and optionally throws an exception
  3. */
  4. protected void onApplyError(String message, Exception e) {
  5. log.error(message, e);
  6. throw new RuntimeException(message, e);
  7. }

代码示例来源:origin: fabric8io/fabric8-maven-plugin

  1. @Override
  2. public void run() {
  3. try {
  4. processOutput(process.getInputStream(), createOutputHandler(log, useStandardLoggingLevel));
  5. } catch (IOException e) {
  6. log.error("Failed to read output stream from %s : %s", commandDesc, e.getMessage());
  7. }
  8. }
  9. };

代码示例来源:origin: fabric8io/fabric8-maven-plugin

  1. @Override
  2. public void run() {
  3. try {
  4. processOutput(process.getErrorStream(), createErrorHandler(log, useStandardLoggingLevel));
  5. } catch (IOException e) {
  6. log.error("Failed to read error stream from %s : %s", commandDesc, e.getMessage());
  7. }
  8. }
  9. };

代码示例来源:origin: fabric8io/fabric8-maven-plugin

  1. private Date extractDate(TagEvent tag) {
  2. try {
  3. return new SimpleDateFormat(DATE_FORMAT).parse(tag.getCreated());
  4. } catch (ParseException e) {
  5. log.error("parsing date error : " + e.getMessage(), e);
  6. return null;
  7. } catch (NullPointerException e) {
  8. log.error("tag date is null : " + e.getMessage(), e);
  9. return null;
  10. }
  11. }
  12. }

代码示例来源:origin: fabric8io/fabric8-maven-plugin

  1. @Override
  2. public Void apply(String outputLine) {
  3. if (useStandardLoggingLevel) {
  4. log.error("%s", outputLine);
  5. } else {
  6. log.warn("%s", outputLine);
  7. }
  8. return null;
  9. }
  10. };

代码示例来源:origin: fabric8io/fabric8-maven-plugin

  1. @Override
  2. public void onClose(KubernetesClientException cause) {
  3. if (cause != null) {
  4. log.error("Error while watching for build to finish: %s [%d]",
  5. cause.getMessage(), cause.getCode());
  6. Status status = cause.getStatus();
  7. if (status != null) {
  8. log.error("%s [%s]", status.getReason(), status.getStatus());
  9. }
  10. }
  11. latch.countDown();
  12. }
  13. };

代码示例来源:origin: fabric8io/fabric8-maven-plugin

  1. private String getLogContainerName(List<Container> containers) {
  2. if (StringUtils.isNotBlank(context.getLogContainerName())) {
  3. for (Container container : containers) {
  4. if (Objects.equals(context.getLogContainerName(), container.getName())) {
  5. return context.getLogContainerName();
  6. }
  7. }
  8. log.error("log container name %s does not exist in pod!! Did you set the correct value for property 'fabric8.log.container'", context.getLogContainerName());
  9. }
  10. return containers.get(0).getName();
  11. }

代码示例来源:origin: io.fabric8/fabric8-maven-enricher-fabric8

  1. protected Probe discoverSpringBootHealthCheck(Integer initialDelay, Integer period, Integer timeout) {
  2. try {
  3. if (MavenUtil.hasAllClasses(this.getProject(), REQUIRED_CLASSES)) {
  4. Properties properties = SpringBootUtil.getSpringBootApplicationProperties(this.getProject());
  5. return buildProbe(properties, initialDelay, period, timeout);
  6. }
  7. } catch (Exception ex) {
  8. log.error("Error while reading the spring-boot configuration", ex);
  9. }
  10. return null;
  11. }

代码示例来源:origin: fabric8io/fabric8-maven-plugin

  1. protected Probe discoverSpringBootHealthCheck(Integer initialDelay, Integer period, Integer timeout, Integer failureTh, Integer successTh) {
  2. try {
  3. if (getContext().getProjectClassLoaders().isClassInCompileClasspath(true, REQUIRED_CLASSES)) {
  4. Properties properties = SpringBootUtil.getSpringBootApplicationProperties(getContext().getProjectClassLoaders().getCompileClassLoader());
  5. return buildProbe(properties, initialDelay, period, timeout, failureTh, successTh);
  6. }
  7. } catch (Exception ex) {
  8. log.error("Error while reading the spring-boot configuration", ex);
  9. }
  10. return null;
  11. }

相关文章