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

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

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

Logger.info介绍

[英]Informational message
[中]信息性消息

代码示例

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

  1. @Override
  2. public void matched() {
  3. latch.countDown();
  4. log.info("Pattern '%s' matched for container %s", logPattern, containerId);
  5. }

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

  1. private void inputStreamPump(OutputStream outputStream,String processInput) throws IOException {
  2. try (BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(outputStream))) {
  3. if (processInput != null) {
  4. writer.write(processInput);
  5. writer.flush();
  6. }
  7. } catch (IOException e) {
  8. log.info("Failed to close process output stream: %s", e.getMessage());
  9. }
  10. }

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

  1. private void logInfoMessage(JsonObject json) {
  2. String value;
  3. if (json.has("stream")) {
  4. value = json.get("stream").getAsString().replaceFirst("\n$", "");
  5. } else if (json.has("status")) {
  6. value = json.get("status").getAsString();
  7. } else {
  8. value = json.toString();
  9. }
  10. log.info("%s", value);
  11. }

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

  1. @Override
  2. protected void processLine(String line) {
  3. log.info("Docker machine \"%s\" is %s",machine.getName(),line.toLowerCase());
  4. if ("Running".equals(line)) {
  5. status = Status.Running;
  6. } else if ("Stopped".equals(line)) {
  7. status = Status.Stopped;
  8. } else {
  9. message = "Unknown status - " + line;
  10. }
  11. }

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

  1. @Override
  2. protected void start() {
  3. log.info("Regenerating certificates for \"%s\"", machine.getName());
  4. start = System.currentTimeMillis();
  5. }

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

  1. private void callBuildPlugin(File outputDir, String buildPluginClass) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
  2. Class buildPlugin = Class.forName(buildPluginClass);
  3. try {
  4. Method method = buildPlugin.getMethod("addExtraFiles", File.class);
  5. method.invoke(null, outputDir);
  6. log.info("Extra files from %s extracted", buildPluginClass);
  7. } catch (NoSuchMethodException exp) {
  8. log.verbose("Build plugin %s does not support 'addExtraFiles' method", buildPluginClass);
  9. }
  10. }

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

  1. @Override
  2. protected void end() {
  3. log.info("Started docker machine \"%s\" in %d seconds",machine.getName(), (System.currentTimeMillis() - start) / 1000);
  4. }
  5. }

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

  1. @Override
  2. protected void end() {
  3. log.info("Created docker machine \"%s\" in %d seconds",machine.getName(), (System.currentTimeMillis() - start) / 1000);
  4. }
  5. }

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

  1. @Override
  2. protected void start() {
  3. log.info("Starting docker machine \"%s\"", machine.getName());
  4. start = System.currentTimeMillis();
  5. }

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

  1. @Override
  2. protected void end() {
  3. log.info("Regenerated certificates for \"%s\" in %d seconds",machine.getName(), (System.currentTimeMillis() - start) / 1000);
  4. }
  5. }

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

  1. @Override
  2. protected void start() {
  3. log.info("Creating docker machine \"%s\" with args %s",
  4. machine.getName(),
  5. machine.getCreateOptions() != null ? machine.getCreateOptions().toString() : "");
  6. log.info("This might take a while ...");
  7. start = System.currentTimeMillis();
  8. }

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

  1. private List<StartOrderResolver.Resolvable> convertToResolvables(List<ImageConfiguration> images) {
  2. List<StartOrderResolver.Resolvable> ret = new ArrayList<>();
  3. for (ImageConfiguration config : images) {
  4. if (config.getRunConfiguration().skip()) {
  5. log.info("%s: Skipped running", config.getDescription());
  6. } else {
  7. ret.add(config);
  8. }
  9. }
  10. return ret;
  11. }

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

  1. public synchronized DockerConnectionDetector.ConnectionParameter getConnectionParameter(String certPath) throws IOException {
  2. if (machine == null) {
  3. return null;
  4. }
  5. if (envMap == null) {
  6. envMap = getEnvironment();
  7. }
  8. String value = envMap.get("DOCKER_HOST");
  9. if (value == null) {
  10. return null;
  11. }
  12. log.info("DOCKER_HOST from docker-machine \"%s\" : %s", machine.getName(), value);
  13. return new DockerConnectionDetector.ConnectionParameter(value, certPath != null ? certPath : envMap.get("DOCKER_CERT_PATH"));
  14. }

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

  1. @Override
  2. protected void executeInternal(ServiceHub serviceHub) throws DockerAccessException, MojoExecutionException {
  3. if (getVolumes() == null) {
  4. log.info("No volume configuration found.");
  5. return;
  6. }
  7. VolumeService volService = serviceHub.getVolumeService();
  8. for (VolumeConfiguration volume : getVolumes()) {
  9. log.info("Creating volume '%s'", volume.getName());
  10. volService.createVolume(volume);
  11. }
  12. }

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

  1. private void startContainer(ImageConfiguration imageConfig, String id, GavLabel gavLabel) throws DockerAccessException {
  2. log.info("%s: Start container %s",imageConfig.getDescription(), id);
  3. docker.startContainer(id);
  4. tracker.registerContainer(id, imageConfig, gavLabel);
  5. }

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

  1. @Override
  2. protected void executeInternal(ServiceHub serviceHub)
  3. throws DockerAccessException, MojoExecutionException {
  4. if(getVolumes() == null){
  5. log.info("No volume configuration found.");
  6. return;
  7. }
  8. VolumeService volService = serviceHub.getVolumeService();
  9. for ( VolumeConfiguration volume : getVolumes()) {
  10. log.info("Removing volume %s", volume.getName());
  11. volService.removeVolume(volume.getName());
  12. }
  13. }

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

  1. private void removeImage(ServiceHub hub, String name) throws DockerAccessException {
  2. QueryService queryService = hub.getQueryService();
  3. if (queryService.hasImage(name)) {
  4. if (hub.getDockerAccess().removeImage(name,true)) {
  5. log.info("%s: Remove", name);
  6. }
  7. }
  8. }

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

  1. /**
  2. * Create the tar file container the source for building an image. This tar can be used directly for
  3. * uploading to a Docker daemon for creating the image
  4. *
  5. * @param imageConfig the image configuration
  6. * @param params mojo params for the project
  7. * @param customizer final customizer to be applied to the tar before being generated
  8. * @return file for holding the sources
  9. * @throws MojoExecutionException if during creation of the tar an error occurs.
  10. */
  11. public File createDockerBuildArchive(ImageConfiguration imageConfig, MojoParameters params, ArchiverCustomizer customizer)
  12. throws MojoExecutionException {
  13. File ret = createArchive(imageConfig.getName(), imageConfig.getBuildConfiguration(), params, log, customizer);
  14. log.info("%s: Created docker source tar %s",imageConfig.getDescription(), ret);
  15. return ret;
  16. }

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

  1. public void tagImage(String imageName, ImageConfiguration imageConfig) throws DockerAccessException {
  2. List<String> tags = imageConfig.getBuildConfiguration().getTags();
  3. if (tags.size() > 0) {
  4. log.info("%s: Tag with %s", imageConfig.getDescription(), EnvUtil.stringJoin(tags, ","));
  5. for (String tag : tags) {
  6. if (tag != null) {
  7. docker.tag(imageName, new ImageName(imageName, tag).getFullName(), true);
  8. }
  9. }
  10. log.debug("Tagging image successful!");
  11. }
  12. }

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

  1. @Override
  2. protected void executeInternal(ServiceHub serviceHub) throws DockerAccessException, MojoExecutionException {
  3. if (skipSave) {
  4. return;
  5. }
  6. String imageName = getImageName();
  7. String fileName = getFileName(imageName);
  8. ensureSaveDir(fileName);
  9. log.info("Saving image %s to %s", imageName, fileName);
  10. if (!serviceHub.getQueryService().hasImage(imageName)) {
  11. throw new MojoExecutionException("No image " + imageName + " exists");
  12. }
  13. serviceHub.getDockerAccess().saveImage(imageName, fileName, ArchiveCompression.fromFileName(fileName));
  14. }

相关文章