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

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

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

Logger.debug介绍

[英]Debug message if debugging is enabled.
[中]调试消息(如果已启用调试)。

代码示例

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

  1. @Override
  2. public void open() {
  3. logger.debug("Open LogWaitChecker callback");
  4. }
  5. }

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

  1. @Override
  2. public void close() {
  3. logger.debug("Closing LogWaitChecker callback");
  4. }

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

  1. @Override
  2. public int read(byte[] b, int off, int len) throws IOException {
  3. int readed = super.read(b, off, len);
  4. log.debug("RESPONSE %s", new String(b, off, len, Charset.forName("UTF-8")));
  5. return readed;
  6. }

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

  1. private void setEnvironmentVariable(String line) {
  2. Matcher matcher = ENV_VAR_PATTERN.matcher(line);
  3. if (matcher.matches()) {
  4. String key = matcher.group("key");
  5. String value = matcher.group("value");
  6. log.debug("Env: %s=%s",key,value);
  7. env.put(key, value);
  8. }
  9. }

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

  1. /**
  2. * Initialize an extended authentication for ecr registry.
  3. *
  4. * @param registry The registry, we may or may not be an ecr registry.
  5. */
  6. public EcrExtendedAuth(Logger logger, String registry) {
  7. this.logger = logger;
  8. Matcher matcher = AWS_REGISTRY.matcher(registry);
  9. isAwsRegistry = matcher.matches();
  10. if (isAwsRegistry) {
  11. accountId = matcher.group(1);
  12. region = matcher.group(2);
  13. } else {
  14. accountId = null;
  15. region = null;
  16. }
  17. logger.debug("registry = %s, isValid= %b", registry, isAwsRegistry);
  18. }

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

  1. private void logRemoveResponse(JsonArray logElements) {
  2. for (int i = 0; i < logElements.size(); i++) {
  3. JsonObject entry = logElements.get(i).getAsJsonObject();
  4. for (Object key : entry.keySet()) {
  5. log.debug("%s: %s", key, entry.get(key.toString()));
  6. }
  7. }
  8. }

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

  1. private JsonObject executeRequest(CloseableHttpClient client, HttpPost request) throws IOException, MojoExecutionException {
  2. try {
  3. CloseableHttpResponse response = client.execute(request);
  4. int statusCode = response.getStatusLine().getStatusCode();
  5. logger.debug("Response status %d", statusCode);
  6. if (statusCode != HttpStatus.SC_OK) {
  7. throw new MojoExecutionException("AWS authentication failure");
  8. }
  9. HttpEntity entity = response.getEntity();
  10. Reader jr = new InputStreamReader(entity.getContent(), StandardCharsets.UTF_8);
  11. return new Gson().fromJson(jr, JsonObject.class);
  12. }
  13. finally {
  14. client.close();
  15. }
  16. }

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

  1. private Map<String, String> addBuildArgsFromProperties(Properties properties) {
  2. String argPrefix = "docker.buildArg.";
  3. Map<String, String> buildArgs = new HashMap<>();
  4. for (Object keyObj : properties.keySet()) {
  5. String key = (String) keyObj;
  6. if (key.startsWith(argPrefix)) {
  7. String argKey = key.replaceFirst(argPrefix, "");
  8. String value = properties.getProperty(key);
  9. if (!isEmpty(value)) {
  10. buildArgs.put(argKey, value);
  11. }
  12. }
  13. }
  14. log.debug("Build args set %s", buildArgs);
  15. return buildArgs;
  16. }

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

  1. HttpPost createSignedRequest(AuthConfig localCredentials, Date time) {
  2. String host = "ecr." + region + ".amazonaws.com";
  3. logger.debug("Get ECR AuthorizationToken from %s", host);
  4. HttpPost request = new HttpPost("https://" + host + '/');
  5. request.setHeader("host", host);
  6. request.setHeader("Content-Type", "application/x-amz-json-1.1");
  7. request.setHeader("X-Amz-Target", "AmazonEC2ContainerRegistry_V20150921.GetAuthorizationToken");
  8. request.setEntity(new StringEntity("{\"registryIds\":[\""+ accountId + "\"]}", StandardCharsets.UTF_8));
  9. AwsSigner4 signer = new AwsSigner4(region, "ecr");
  10. signer.sign(request, localCredentials, time);
  11. return request;
  12. }
  13. }

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

  1. @Override
  2. public void log(int type, Timestamp timestamp, String txt) throws DoneException {
  3. logger.debug("LogWaitChecker: Trying to match '%s' [Pattern: %s] [thread: %d]",
  4. txt, pattern.pattern(), Thread.currentThread().getId());
  5. final String toMatch;
  6. if (logBuffer != null) {
  7. logBuffer.append(txt).append("\n");
  8. toMatch = logBuffer.toString();
  9. } else {
  10. toMatch = txt;
  11. }
  12. if (pattern.matcher(toMatch).find()) {
  13. logger.debug("Found log-wait pattern in log output");
  14. callback.matched();
  15. throw new DoneException();
  16. }
  17. }

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

  1. @Override
  2. public void write(byte[] b, int off, int len) throws IOException {
  3. if(log.isDebugEnabled()){
  4. String request = new String(b, off, len, Charset.forName("UTF-8"));
  5. String logValue = ascii().matchesAllOf(request) ? request : "not logged due to non-ASCII characters. ";
  6. log.debug("REQUEST %s", logValue);
  7. }
  8. out.write(b, off, len);
  9. }

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

  1. private void removeContainer(ContainerTracker.ContainerShutdownDescriptor descriptor, boolean removeVolumes, String containerId)
  2. throws DockerAccessException {
  3. int shutdownGracePeriod = descriptor.getShutdownGracePeriod();
  4. if (shutdownGracePeriod != 0) {
  5. log.debug("Shutdown: Wait %d ms before removing container", shutdownGracePeriod);
  6. WaitUtil.sleep(shutdownGracePeriod);
  7. }
  8. // Remove the container
  9. docker.removeContainer(containerId, removeVolumes);
  10. }

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

  1. public void createCustomNetworkIfNotExistant(String customNetwork) throws DockerAccessException {
  2. if (!queryService.hasNetwork(customNetwork)) {
  3. docker.createNetwork(new NetworkCreateConfig(customNetwork));
  4. } else {
  5. log.debug("Custom Network " + customNetwork + " found");
  6. }
  7. }

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

  1. @Override
  2. public String createNetwork(NetworkCreateConfig networkConfig)
  3. throws DockerAccessException {
  4. String createJson = networkConfig.toJson();
  5. log.debug("Network create config: " + createJson);
  6. try {
  7. String url = urlBuilder.createNetwork();
  8. String response =
  9. delegate.post(url, createJson, new ApacheHttpClientDelegate.BodyResponseHandler(), HTTP_CREATED);
  10. log.debug(response);
  11. JsonObject json = JsonFactory.newJsonObject(response);
  12. if (json.has("Warnings")) {
  13. logWarnings(json);
  14. }
  15. // only need first 12 to id a container
  16. return json.get("Id").getAsString().substring(0, 12);
  17. } catch (IOException e) {
  18. throw new DockerAccessException(e, "Unable to create network for [%s]",
  19. networkConfig.getName());
  20. }
  21. }

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

  1. @Override
  2. public boolean check() {
  3. try {
  4. final ContainerDetails container = docker.getContainer(containerId);
  5. if (container == null) {
  6. log.debug("HealthWaitChecker: Container %s not found");
  7. return false;
  8. }
  9. if (container.getHealthcheck() == null) {
  10. throw new IllegalArgumentException("Can not wait for healthstate of " + imageConfigDesc +". No HEALTHCHECK configured.");
  11. }
  12. if (first) {
  13. log.info("%s: Waiting to become healthy", imageConfigDesc);
  14. log.debug("HealthWaitChecker: Waiting for healthcheck: '%s'", container.getHealthcheck());
  15. first = false;
  16. } else if (log.isDebugEnabled()) {
  17. log.debug("HealthWaitChecker: Waiting on healthcheck '%s'", container.getHealthcheck());
  18. }
  19. return container.isHealthy();
  20. } catch(DockerAccessException e) {
  21. log.warn("Error while checking health: %s", e.getMessage());
  22. return false;
  23. }
  24. }

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

  1. private AuthConfig extractAuthConfigFromCredentialsHelper(String registryToLookup, String credConfig) throws MojoExecutionException {
  2. CredentialHelperClient credentialHelper = new CredentialHelperClient(log, credConfig);
  3. log.debug("AuthConfig: credentials from credential helper/store %s version %s",
  4. credentialHelper.getName(),
  5. credentialHelper.getVersion());
  6. return credentialHelper.getAuthConfig(registryToLookup);
  7. }

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

  1. @Override
  2. public String createContainer(ContainerCreateConfig containerConfig, String containerName)
  3. throws DockerAccessException {
  4. String createJson = containerConfig.toJson();
  5. log.debug("Container create config: %s", createJson);
  6. try {
  7. String url = urlBuilder.createContainer(containerName);
  8. String response =
  9. delegate.post(url, createJson, new ApacheHttpClientDelegate.BodyResponseHandler(), HTTP_CREATED);
  10. JsonObject json = JsonFactory.newJsonObject(response);
  11. logWarnings(json);
  12. // only need first 12 to id a container
  13. return json.get("Id").getAsString().substring(0, 12);
  14. } catch (IOException e) {
  15. throw new DockerAccessException(e, "Unable to create container for [%s]",
  16. containerConfig.getImageName());
  17. }
  18. }

代码示例来源: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. public String createVolume(VolumeCreateConfig containerConfig)
  3. throws DockerAccessException
  4. {
  5. String createJson = containerConfig.toJson();
  6. log.debug("Volume create config: %s", createJson);
  7. try
  8. {
  9. String url = urlBuilder.createVolume();
  10. String response =
  11. delegate.post(url,
  12. createJson,
  13. new ApacheHttpClientDelegate.BodyResponseHandler(),
  14. HTTP_CREATED);
  15. JsonObject json = JsonFactory.newJsonObject(response);
  16. logWarnings(json);
  17. return json.get("Name").getAsString();
  18. }
  19. catch (IOException e)
  20. {
  21. throw new DockerAccessException(e, "Unable to create volume for [%s]",
  22. containerConfig.getName());
  23. }
  24. }

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

  1. private List<WaitChecker> prepareWaitCheckers(ImageConfiguration imageConfig, Properties projectProperties, String containerId) throws IOException {
  2. WaitConfiguration wait = getWaitConfiguration(imageConfig);
  3. if (wait == null) {
  4. return Collections.emptyList();
  5. }
  6. List<WaitChecker> checkers = new ArrayList<>();
  7. if (wait.getUrl() != null) {
  8. checkers.add(getUrlWaitChecker(imageConfig.getDescription(), projectProperties, wait));
  9. }
  10. if (wait.getLog() != null) {
  11. log.debug("LogWaitChecker: Waiting on %s", wait.getLog());
  12. checkers.add(new LogWaitChecker(wait.getLog(), dockerAccess, containerId, log));
  13. }
  14. if (wait.getTcp() != null) {
  15. try {
  16. Container container = queryService.getMandatoryContainer(containerId);
  17. checkers.add(getTcpWaitChecker(container, imageConfig.getDescription(), projectProperties, wait.getTcp()));
  18. } catch (DockerAccessException e) {
  19. throw new IOException("Unable to access container " + containerId, e);
  20. }
  21. }
  22. if (wait.getHealthy() == Boolean.TRUE) {
  23. checkers.add(new HealthCheckChecker(dockerAccess, containerId, imageConfig.getDescription(), log));
  24. }
  25. if (wait.getExit() != null) {
  26. checkers.add(new ExitCodeChecker(wait.getExit(), queryService, containerId));
  27. }
  28. return checkers;
  29. }

相关文章