com.holonplatform.core.internal.Logger类的使用及代码示例

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

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

Logger介绍

[英]Logger service.
[中]记录器服务。

代码示例

代码示例来源:origin: com.holon-platform.core/holon-core

  1. /**
  2. * Optional id to distinguish this datastore data context between multiple avaialable contexts
  3. * @param dataContextId Data context id
  4. */
  5. public void setDataContextId(String dataContextId) {
  6. this.dataContextId = dataContextId;
  7. LOGGER.debug(() -> "Datastore [" + this + "]: setted data context id [" + dataContextId + "]");
  8. }

代码示例来源:origin: com.holon-platform.vaadin/holon-vaadin-flow

  1. @Override
  2. public Optional<PropertyBox> getItem(T value) {
  3. if (toItemConverter != null) {
  4. return toItemConverter.apply(value);
  5. }
  6. LOGGER.warn(
  7. "The value to PropertyBox item conversion logic was not configured, no item will never be returned");
  8. return Optional.empty();
  9. }

代码示例来源:origin: com.holon-platform.core/holon-core

  1. /**
  2. * Get a {@link Logger} bound to {@link #NAME}.
  3. * @return Logger
  4. */
  5. static Logger create() {
  6. return Logger.create(NAME);
  7. }

代码示例来源:origin: com.holon-platform.mongo/holon-datastore-mongo-core

  1. @Override
  2. public void trace(final String title, final Supplier<String> json) {
  3. if (isTraceEnabled()) {
  4. LOGGER.info("(TRACE) " + ((title != null) ? title : "JSON") + ": \n" + json.get());
  5. } else {
  6. LOGGER.debug(() -> ((title != null) ? title : "JSON") + ": \n" + json.get());
  7. }
  8. }

代码示例来源:origin: com.holon-platform.core/holon-core

  1. : ClassUtils.getDefaultClassLoader();
  2. LOGGER.debug(() -> "Load DatastoreCommodityFactory for classloader [" + cl
  3. + "] using ServiceLoader with service name: " + commodityFactoryType.getName());
  4. if (!commodities.containsKey(commodityType)) {
  5. commodities.put(commodityType, f);
  6. LOGGER.debug(() -> "Registered commodity factory [" + f.getClass().getName()
  7. + "] bound to commodity type [" + commodityType.getName() + "]");
  8. LOGGER.warn("Invalid commodity factory [" + f.getClass().getName() + "]: the commodity type "
  9. + "returned by getCommodityType() is null - skipping factory registration");

代码示例来源:origin: com.holon-platform.vaadin7/holon-vaadin-spring

  1. if (beanNames != null && beanNames.length > 0) {
  2. if (beanNames.length > 1) {
  3. LOGGER.warn("More than one bean annotated with @DefaultView was found in context " + "("
  4. + beanNames.length + "), no default view will be configured in Navigator.");
  5. } else {
  6. if (viewName != null) {
  7. getActuator().setDefaultViewName(viewName);
  8. LOGGER.info("Configured default view " + type.getName() + " with name: " + viewName);
  9. if (beanNames != null && beanNames.length > 0) {
  10. if (beanNames.length > 1) {
  11. LOGGER.warn("More than one bean annotated with @ErrorView was found in context " + "("
  12. + beanNames.length + "), no error view will be configured in Navigator.");
  13. } else {
  14. LOGGER.info("Configured error view: " + type.getName());
  15. if (beanNames != null && beanNames.length > 0) {
  16. if (beanNames.length > 1) {
  17. LOGGER.warn("More than one bean annotated with @AccessDeniedView was found in context "
  18. + "(" + beanNames.length
  19. + "), no access denied view will be configured in Navigator.");
  20. LOGGER.info("Configured access denied view: " + type.getName());

代码示例来源:origin: com.holon-platform.mongo/holon-datastore-mongo-async

  1. LOGGER.debug(() -> "MongoDB transaction [" + tx + "] was not finalized because it is not new");
  2. return CompletableFuture.completedFuture(Boolean.FALSE);
  3. LOGGER.error("Failed to finalize the transaction", e);
  4. return null;
  5. }).thenApply(r -> {
  6. LOGGER.debug(() -> "MongoDB transaction [" + tx + "] finalized");

代码示例来源:origin: com.holon-platform.mongo/holon-datastore-mongo-sync

  1. @Override
  2. protected void onDatastoreInitialized(ClassLoader classLoader) {
  3. LOGGER.info("MongoDB SYNC Datastore initialized [Database name: " + getDatabaseName()
  4. + getDataContextId().map(id -> ", Data context id: " + id).orElse("") + "]");
  5. }

代码示例来源:origin: com.holon-platform.vaadin/holon-vaadin-flow

  1. windowSizeReceiver);
  2. } catch (Exception e) {
  3. LOGGER.error("Failed to execute window size detection JS [" + e.getMessage() + "]");
  4. LOGGER.warn(
  5. "The UI reference is not available, the browser window width and height won't be detected and updated");

代码示例来源:origin: com.holon-platform.vaadin/holon-vaadin

  1. @Override
  2. public Result<PropertyBox> convertToModel(T value, ValueContext context) {
  3. try {
  4. return Result.ok(itemConverter.convert(value));
  5. } catch (Exception e) {
  6. LOGGER.error("Conversion to model failed", e);
  7. return Result.error(e.getMessage());
  8. }
  9. }

代码示例来源:origin: com.holon-platform.mongo/holon-datastore-mongo-core

  1. /**
  2. * Get the Mongo driver version informations.
  3. * @param classLoader ClassLoader to use (not null)
  4. * @return Mongo driver version informations
  5. */
  6. public static MongoVersion getMongoVersion(ClassLoader classLoader) {
  7. ObjectUtils.argumentNotNull(classLoader, "ClassLoader must be not null");
  8. return MONGO_VERSIONS.computeIfAbsent(classLoader, cl -> {
  9. try {
  10. final Class<?> cls = ClassUtils.forName("com.mongodb.internal.build.MongoDriverVersion", cl);
  11. final Field fld = cls.getDeclaredField("VERSION");
  12. Object value = fld.get(null);
  13. if (value != null && value instanceof String) {
  14. return new DefaultMongoVersion(true, (String) value);
  15. }
  16. } catch (Exception e) {
  17. LOGGER.warn("Failed to detect Mongo driver version");
  18. LOGGER.debug(() -> "Failed to detect Mongo driver version using MongoDriverVersion class", e);
  19. }
  20. return new DefaultMongoVersion(false, null);
  21. });
  22. }

代码示例来源:origin: com.holon-platform.vaadin7/holon-vaadin-spring

  1. LOGGER.info("SpringViewClassProvider: Detecting View classes");
  2. final String[] viewBeanNames = applicationContext.getBeanNamesForAnnotation(SpringView.class);
  3. for (String beanName : viewBeanNames) {
  4. if (uis.length == 0) {
  5. viewClasses.put(viewName, new WeakReference<>(viewType));
  6. LOGGER.debug(() -> "View class [" + viewType + "] detected for the view name [" + viewName
  7. + "]");
  8. } else {
  9. uiViewClasses.computeIfAbsent(ui, key -> new HashMap<>()).put(viewName,
  10. new WeakReference<>(viewType));
  11. LOGGER.debug(() -> "View class [" + viewType + "] detected for the view name ["
  12. + viewName + "] - bound to the UI class [" + ui + "]");

代码示例来源:origin: com.holon-platform.jpa/holon-datastore-jpa-spring

  1. .withPropertySource(EnvironmentConfigPropertyProvider.create(environment)).build();
  2. } catch (Exception e) {
  3. logger.warn("Failed to load DatastoreConfigProperties", e);
  4. wrn.append(": expecting a persistence.xml file for unit name: ");
  5. wrn.append(dataContextId);
  6. logger.warn(wrn.toString());
  7. logger.info(log.toString());
  8. log.append("\"");
  9. logger.info(log.toString());

代码示例来源:origin: com.holon-platform.mongo/holon-datastore-mongo-async

  1. @Override
  2. protected void onDatastoreInitialized(ClassLoader classLoader) {
  3. LOGGER.info("MongoDB ASYNC Datastore initialized [Database name: " + getDatabaseName()
  4. + getDataContextId().map(id -> ", Data context id: " + id).orElse("") + "]");
  5. }

代码示例来源:origin: com.holon-platform.jaxrs/holon-jaxrs-swagger-core

  1. /**
  2. * Get the API response.
  3. * @param application JAX-RS Application reference
  4. * @param headers JAX-RS Headers reference
  5. * @param uriInfo JAX-RS URI info reference
  6. * @param outputType API definition output type
  7. * @return The API response
  8. */
  9. protected Response getApi(Application application, HttpHeaders headers, UriInfo uriInfo, OutputType outputType) {
  10. // API context id
  11. final String contextId = getContextIdOrDefault();
  12. try {
  13. // get the API definition
  14. final ApiDefinition<M> api = getApi(contextId, application, headers, uriInfo);
  15. // check not null
  16. if (api.getApi() == null) {
  17. return Response.status(Status.NOT_FOUND)
  18. .entity("No API definition available for context id [" + contextId + "]").build();
  19. }
  20. // serialize the API definition
  21. return Response.status(Response.Status.OK).type(outputType.getMediaType())
  22. .entity(getApiOutput(outputType, api.getApi(), api.isPretty())).build();
  23. } catch (Exception e) {
  24. LOGGER.error("Failed to provide the API definition for context id [" + contextId + "]", e);
  25. return Response.status(Status.INTERNAL_SERVER_ERROR)
  26. .entity("Failed to provide the API definition for context id [" + contextId + "] - Error: ["
  27. + ExceptionUtils.getRootCauseMessage(e) + "]")
  28. .build();
  29. }
  30. }

代码示例来源:origin: com.holon-platform.core/holon-core

  1. /**
  2. * Set whether to trace Datastore operations.
  3. * @param trace Whether to trace Datastore operations
  4. */
  5. public void setTraceEnabled(boolean trace) {
  6. this.traceEnabled = trace;
  7. LOGGER.debug(() -> "Datastore [" + this + "]: setted trace enabled [" + trace + "]");
  8. }

代码示例来源:origin: com.holon-platform.mongo/holon-datastore-mongo-sync

  1. LOGGER.warn("A thread bound transaction was already present [" + tx
  2. + "] - The current transaction will be finalized");
  3. try {
  4. endTransaction(tx);
  5. } catch (Exception e) {
  6. LOGGER.warn("Failed to force current transaction finalization", e);
  7. session.close();
  8. } catch (Exception re) {
  9. LOGGER.warn("Transaction failed to start but the transaction session cannot be closed", re);
  10. LOGGER.debug(() -> "MongoDB transaction [" + tx + "] created and setted as current transaction");

代码示例来源:origin: com.holon-platform.jaxrs/holon-jaxrs-swagger-core

  1. /**
  2. * Get the Class which corresponds to given type, if available.
  3. * @param type The type
  4. * @return Optional type class
  5. */
  6. public static Optional<Class<?>> getClassFromType(Type type) {
  7. if (type instanceof Class<?>) {
  8. return Optional.of((Class<?>) type);
  9. }
  10. try {
  11. return Optional.ofNullable(Class.forName(type.getTypeName()));
  12. } catch (Exception e) {
  13. LOGGER.warn("Failed to obtain a Class from Type name [" + type.getTypeName() + "]: " + e.getMessage());
  14. }
  15. return Optional.empty();
  16. }

代码示例来源:origin: com.holon-platform.core/holon-core

  1. /**
  2. * Get a {@link Logger} bound to {@link #NAME}.
  3. * @return Logger
  4. */
  5. static Logger create() {
  6. return Logger.create(NAME);
  7. }

代码示例来源:origin: com.holon-platform.jaxrs/holon-jaxrs-swagger-core

  1. /**
  2. * Configure the API listing endpoints, if the configuration is enabled
  3. * @param application The JAX-RS application (not null)
  4. * @return The API endpoint definitions
  5. */
  6. protected List<ApiEndpointDefinition> configureEndpoints(A application) {
  7. // check disabled
  8. if (configurationProperties.isEnabled()) {
  9. return registerEndpoints(application);
  10. } else {
  11. LOGGER.info("Swagger API endpoints configuration is disabled.");
  12. return Collections.emptyList();
  13. }
  14. }

相关文章