org.modeshape.jcr.api.Logger.debug()方法的使用及代码示例

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

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

Logger.debug介绍

[英]Log a message at the DEBUG level according to the specified format and (optional) parameters. The message should contain a pair of empty curly braces for each of the parameter, which should be passed in the correct order. The pattern consists of zero or more keys of the form {n}, where n is an integer starting at 0. Therefore, the first parameter replaces all occurrences of "{0}", the second parameter replaces all occurrences of "{1}", etc.

If any parameter is null, the corresponding key is replaced with the string "null". Therefore, consider using an empty string when keys are to be removed altogether.
[中]根据指定的格式和(可选)参数在调试级别记录消息。消息应该为每个参数包含一对空大括号,并且应该按照正确的顺序传递。该模式由格式为{n}的零个或多个键组成,其中n是从0开始的整数。因此,第一个参数替换所有出现的“{0}”,第二个参数替换所有出现的“{1}”,等等。
如果任何参数为null,则相应的键将替换为字符串“null”。因此,当键被完全移除时,考虑使用一个空字符串。

代码示例

代码示例来源:origin: ModeShape/modeshape

  1. private BasicFileAttributes basicAttributesFor( File file ) {
  2. Path filePath = Paths.get(file.toURI());
  3. try {
  4. return Files.readAttributes(filePath, BasicFileAttributes.class);
  5. } catch (IOException e) {
  6. log().debug(e, "Unable to read attributes for '{0}'", filePath);
  7. return null;
  8. }
  9. }

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. private Name primaryTypeFor( Path resolvedPath ) {
  2. boolean isFolder = Files.isDirectory(resolvedPath, LinkOption.NOFOLLOW_LINKS);
  3. boolean isFile = Files.isRegularFile(resolvedPath, LinkOption.NOFOLLOW_LINKS);
  4. if (!isFile && !isFolder) {
  5. connector.log().debug("The entry at {0} is neither a file nor a folder", resolvedPath);
  6. return null;
  7. }
  8. return isFolder ? JcrNtLexicon.FOLDER : JcrNtLexicon.FILE;
  9. }
  10. }

代码示例来源:origin: ModeShape/modeshape

  1. private Name primaryTypeFor( Path resolvedPath ) {
  2. boolean isFolder = Files.isDirectory(resolvedPath, LinkOption.NOFOLLOW_LINKS);
  3. boolean isFile = Files.isRegularFile(resolvedPath, LinkOption.NOFOLLOW_LINKS);
  4. if (!isFile && !isFolder) {
  5. connector.log().debug("The entry at {0} is neither a file nor a folder", resolvedPath);
  6. return null;
  7. }
  8. return isFolder ? JcrNtLexicon.FOLDER : JcrNtLexicon.FILE;
  9. }
  10. }

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. private BasicFileAttributes basicAttributesFor( File file ) {
  2. Path filePath = Paths.get(file.toURI());
  3. try {
  4. return Files.readAttributes(filePath, BasicFileAttributes.class);
  5. } catch (IOException e) {
  6. log().debug(e, "Unable to read attributes for '{0}'", filePath);
  7. return null;
  8. }
  9. }

代码示例来源:origin: ModeShape/modeshape

  1. /**
  2. * Cleans up any resources related to {@link AbstractHandler#ACTIVE_SESSION}
  3. */
  4. public static void cleanupActiveSession() {
  5. Session session = AbstractHandler.ACTIVE_SESSION.get();
  6. if (session != null) {
  7. try {
  8. AbstractHandler.ACTIVE_SESSION.remove();
  9. session.logout();
  10. LOGGER.debug("Logged out REST service session");
  11. } catch (Exception e) {
  12. LOGGER.warn(e, "Error while trying to logout REST service session");
  13. }
  14. }
  15. }

代码示例来源:origin: ModeShape/modeshape

  1. @Override
  2. public void filter( ContainerRequestContext requestContext ) {
  3. if (LOGGER.isDebugEnabled()) {
  4. LOGGER.debug("Received request: {0}", requestContext.getUriInfo().getRequestUri().toString());
  5. LOGGER.debug("Executing method: {0}", requestContext.getMethod());
  6. }
  7. }
  8. }

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. private void recursiveWatch( Path path,
  2. final WatchService watchService ) {
  3. connector.log().debug("Recursively watching '{0}'", path);
  4. try {
  5. Files.walkFileTree(path, new SimpleFileVisitor<Path>() {
  6. @Override
  7. public FileVisitResult preVisitDirectory( Path dir,
  8. BasicFileAttributes attrs ) throws IOException {
  9. if (WATCH_MODIFIER != null) {
  10. dir.register(watchService, EVENTS_TO_WATCH, WATCH_MODIFIER);
  11. } else {
  12. dir.register(watchService, EVENTS_TO_WATCH);
  13. }
  14. return FileVisitResult.CONTINUE;
  15. }
  16. });
  17. } catch (IOException e) {
  18. throw new RuntimeException(e);
  19. }
  20. }

代码示例来源:origin: ModeShape/modeshape

  1. private Response exceptionResponse( Throwable t,
  2. Status status ) {
  3. switch (status) {
  4. case NOT_FOUND: {
  5. LOGGER.debug(t, "Item not found");
  6. break;
  7. }
  8. default: {
  9. LOGGER.error(t, "Server error");
  10. break;
  11. }
  12. }
  13. return Response.status(status).entity(new RestException(t)).build();
  14. }
  15. }

代码示例来源:origin: ModeShape/modeshape

  1. private String ownerFor( File file ) {
  2. Path filePath = Paths.get(file.toURI());
  3. try {
  4. return Files.getOwner(filePath).getName();
  5. } catch (IOException e) {
  6. log().debug(e, "Unable to read the owner of '{0}'", filePath);
  7. return null;
  8. }
  9. }

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. private String ownerFor( File file ) {
  2. Path filePath = Paths.get(file.toURI());
  3. try {
  4. return Files.getOwner(filePath).getName();
  5. } catch (IOException e) {
  6. log().debug(e, "Unable to read the owner of '{0}'", filePath);
  7. return null;
  8. }
  9. }

代码示例来源:origin: ModeShape/modeshape

  1. private void convertStringMimeTypesToMediaTypes(Set<String> mimeTypes, Set<MediaType> mediaTypes) {
  2. for (String mimeTypeEntry : mimeTypes) {
  3. //allow each mime type entry to be an array in itself
  4. String[] multipleMimeTypes = mimeTypeEntry.split("[,\\s]");
  5. for (String mimeType : multipleMimeTypes) {
  6. if (StringUtil.isBlank(mimeType)) {
  7. continue;
  8. }
  9. MediaType mediaType = MediaType.parse(mimeType.trim());
  10. if (mediaType == null) {
  11. logger().debug("Invalid media type: {0}", mimeType);
  12. continue;
  13. }
  14. mediaTypes.add(mediaType);
  15. }
  16. }
  17. }

代码示例来源:origin: ModeShape/modeshape

  1. @Override
  2. protected void doInitialize() throws RepositoryException {
  3. logger().debug("Elasticsearch index provider for repository '{0}' "
  4. + "is trying to connect to cluster", getRepositoryName());
  5. client = new EsClient(host, port);
  6. }

代码示例来源:origin: ModeShape/modeshape

  1. @Override
  2. protected void postShutdown() {
  3. logger().debug("Shutting down the elasticsearch index provider '{0}' in repository '{1}'", getName(), getRepositoryName());
  4. }

代码示例来源:origin: ModeShape/modeshape

  1. @Override
  2. public RepositoryInfo getRepositoryInfo(String repositoryId, ExtensionsData extension) {
  3. LOGGER.debug("-- getting repository info");
  4. RepositoryInfo info = jcrRepository(repositoryId).getRepositoryInfo(login(repositoryId));
  5. return new RepositoryInfoLocal(repositoryId, info);
  6. }

代码示例来源:origin: ModeShape/modeshape

  1. @SuppressWarnings( "synthetic-access" )
  2. @Override
  3. public void beforeIndexing() {
  4. logger().debug(
  5. "Disabling index '{0}' from provider '{1}' in workspace '{2}' while it is reindexed. It will not be used in queries until reindexing has completed",
  6. defn.getName(), defn.getProviderName(), workspaceName);
  7. managedIndex.enable(false);
  8. }

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. @SuppressWarnings( "synthetic-access" )
  2. @Override
  3. public void beforeIndexing() {
  4. logger().debug(
  5. "Disabling index '{0}' from provider '{1}' in workspace '{2}' while it is reindexed. It will not be used in queries until reindexing has completed",
  6. defn.getName(), defn.getProviderName(), workspaceName);
  7. managedIndex.enable(false);
  8. }

代码示例来源:origin: ModeShape/modeshape

  1. @SuppressWarnings( "synthetic-access" )
  2. @Override
  3. public void afterIndexing() {
  4. managedIndex.enable(true);
  5. logger().debug("Enabled index '{0}' from provider '{1}' in workspace '{2}' after reindexing has completed",
  6. defn.getName(), defn.getProviderName(), workspaceName);
  7. }

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. @SuppressWarnings( "synthetic-access" )
  2. @Override
  3. public void afterIndexing() {
  4. managedIndex.enable(true);
  5. logger().debug("Enabled index '{0}' from provider '{1}' in workspace '{2}' after reindexing has completed",
  6. defn.getName(), defn.getProviderName(), workspaceName);
  7. }

代码示例来源:origin: ModeShape/modeshape

  1. @Override
  2. protected void postShutdown() {
  3. logger().debug("Shutting down the local index provider '{0}' in repository '{1}'", getName(), getRepositoryName());
  4. if (db != null && !db.isClosed()) {
  5. try {
  6. db.commit();
  7. db.close();
  8. } finally {
  9. db = null;
  10. }
  11. }
  12. }

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. @Override
  2. protected void postShutdown() {
  3. logger().debug("Shutting down the local index provider '{0}' in repository '{1}'", getName(), getRepositoryName());
  4. if (db != null && !db.isClosed()) {
  5. try {
  6. db.commit();
  7. db.close();
  8. } finally {
  9. db = null;
  10. }
  11. }
  12. }

相关文章