org.granite.logging.Logger.error()方法的使用及代码示例

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

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

Logger.error介绍

暂无

代码示例

代码示例来源:origin: org.graniteds/granite-client-javafx

  1. @Override
  2. public void handleException(TransportException e) {
  3. log.error(e, "Engine failed");
  4. }
  5. }

代码示例来源:origin: org.graniteds/granite-client

  1. @Override
  2. public void onIssue(IssueEvent event) {
  3. log.error("Subscription failed %s: %s", consumer, event);
  4. }
  5. };

代码示例来源:origin: org.graniteds/granite-client

  1. @Override
  2. public void handleException(TransportException e) {
  3. log.error(e, "Engine failed");
  4. }
  5. }

代码示例来源:origin: org.graniteds/granite-client-javafx

  1. private void handleClass(Class<?> clazz) {
  2. if (clazz.isInterface() || Modifier.isAbstract(clazz.getModifiers()))
  3. return;
  4. if (Externalizer.class.isAssignableFrom(clazz)) {
  5. try {
  6. scannedExternalizers.add(TypeUtil.newInstance(clazz, Externalizer.class));
  7. } catch (Exception e) {
  8. log.error(e, "Could not create new instance of: %s", clazz);
  9. }
  10. }
  11. }

代码示例来源:origin: org.graniteds/granite-client-java-advanced

  1. @Override
  2. public void onIssue(IssueEvent event) {
  3. log.error("Destination %s could not be subscribed: %s", destination, event.getType());
  4. subscribing = false;
  5. }
  6. };

代码示例来源:origin: org.graniteds/granite-client-javafx

  1. @Override
  2. public void onIssue(IssueEvent event) {
  3. log.error("Subscription failed %s: %s", consumer, event);
  4. for (TopicSubscriptionListener subscriptionListener : subscriptionListeners.keySet())
  5. subscriptionListener.onSubscriptionFault(Consumer.this, event);
  6. }
  7. };

代码示例来源:origin: org.graniteds/granite-client-javafx

  1. @Override
  2. public void onIssue(IssueEvent event) {
  3. log.error("Unsubscription failed %s: %s", consumer, event);
  4. channel.removeConsumer(consumer);
  5. for (TopicSubscriptionListener subscriptionListener : subscriptionListeners.keySet())
  6. subscriptionListener.onUnsubscriptionFault(Consumer.this, event, subscriptionId);
  7. subscriptionId = null;
  8. }
  9. };

代码示例来源:origin: org.graniteds/granite-client-javafx

  1. private void scanConfig(String graniteConfigProperties) {
  2. //if config overriding exists
  3. Scanner scanner = ScannerFactory.createScanner(this, graniteConfigProperties != null ? graniteConfigProperties : GRANITE_CONFIG_PROPERTIES);
  4. try {
  5. scanner.scan();
  6. } catch (Exception e) {
  7. log.error(e, "Could not scan classpath for configuration");
  8. }
  9. }

代码示例来源:origin: org.graniteds/granite-client

  1. public boolean handleMarkerItem(ScannedItem item) {
  2. try {
  3. return handleProperties(item.loadAsProperties());
  4. } catch (Exception e) {
  5. log.error(e, "Could not load properties: %s", item);
  6. }
  7. return true;
  8. }

代码示例来源:origin: org.graniteds/granite-server

  1. public void configure(XMap adapterProperties, XMap destinationProperties) throws ServiceException {
  2. String securityPolicy = adapterProperties.get("security-policy");
  3. if (securityPolicy != null) {
  4. try {
  5. this.securityPolicy = TypeUtil.newInstance(securityPolicy, SecurityPolicy.class);
  6. }
  7. catch (Exception e) {
  8. log.error(e, "Could not create instance of %s (using default security policy)", securityPolicy);
  9. }
  10. }
  11. }

代码示例来源:origin: org.graniteds/granite-client-javafx

  1. public boolean handleMarkerItem(ScannedItem item) {
  2. try {
  3. return handleProperties(item.loadAsProperties());
  4. } catch (Exception e) {
  5. log.error(e, "Could not load properties: %s", item);
  6. }
  7. return true;
  8. }

代码示例来源:origin: org.graniteds/granite-client

  1. private void scanConfig(String graniteConfigProperties) {
  2. //if config overriding exists
  3. Scanner scanner = ScannerFactory.createScanner(this, graniteConfigProperties != null ? graniteConfigProperties : GRANITE_CONFIG_PROPERTIES);
  4. try {
  5. scanner.scan();
  6. } catch (Exception e) {
  7. log.error(e, "Could not scan classpath for configuration");
  8. }
  9. }

代码示例来源:origin: org.graniteds/granite-server

  1. public ServiceException handleNoSuchMethodException(Message request,
  2. Destination destination, Object invokee, String method,
  3. Object[] args, NoSuchMethodException e) {
  4. if (getLogException())
  5. log.error(e, "Could not process remoting message: %s", request);
  6. return getServiceException(request, destination, method, e);
  7. }

代码示例来源:origin: org.graniteds/granite-client

  1. public void handleScannedItem(ScannedItem item) {
  2. if ("class".equals(item.getExtension()) && item.getName().indexOf('$') == -1) {
  3. try {
  4. handleClass(item.loadAsClass());
  5. } catch (Throwable t) {
  6. log.error(t, "Could not load class: %s", item);
  7. }
  8. }
  9. }

代码示例来源:origin: org.graniteds/granite-client-java

  1. protected void onError(Channel channel, Throwable throwable) {
  2. log.error(throwable, "Websocket connection error");
  3. channel.onError(connectMessage, new RuntimeException("Websocket connection error", throwable));
  4. getStatusHandler().handleException(new TransportException("Websocket connection error: " + throwable.getMessage()));
  5. }
  6. }

代码示例来源:origin: org.graniteds/granite-client-javafx

  1. protected void onError(Channel channel, Throwable throwable) {
  2. log.error(throwable, "Websocket connection error");
  3. channel.onError(connectMessage, new RuntimeException("Websocket connection error", throwable));
  4. getStatusHandler().handleException(new TransportException("Websocket connection error: " + throwable.getMessage()));
  5. }
  6. }

代码示例来源:origin: org.graniteds/granite-server

  1. private void scanConfig(String serviceConfigProperties, List<ScannedItemHandler> handlers) {
  2. Scanner scanner = ScannerFactory.createScanner(this, serviceConfigProperties != null ? serviceConfigProperties : SERVICES_CONFIG_PROPERTIES);
  3. scanner.addHandlers(handlers);
  4. try {
  5. scanner.scan();
  6. } catch (Exception e) {
  7. log.error(e, "Could not scan classpath for configuration");
  8. }
  9. }

代码示例来源:origin: org.graniteds/granite-client

  1. private void scanConfig(String serviceConfigProperties, List<ScannedItemHandler> handlers) {
  2. Scanner scanner = ScannerFactory.createScanner(this, serviceConfigProperties != null ? serviceConfigProperties : SERVICES_CONFIG_PROPERTIES);
  3. scanner.addHandlers(handlers);
  4. try {
  5. scanner.scan();
  6. } catch (Exception e) {
  7. log.error(e, "Could not scan classpath for configuration");
  8. }
  9. }

代码示例来源:origin: org.ow2.kerneos.graniteds-osgi/granite-core

  1. @Validate
  2. public void start() {
  3. log.debug("Start OSGiDestinationAdapter: " + toString());
  4. if (service.findDestinationById(id) == null) {
  5. service.addDestination(this);
  6. started = true;
  7. } else {
  8. log.error("Destination \"" + id + "\" already registered");
  9. }
  10. }

代码示例来源:origin: org.graniteds/granite-client-javafx

  1. @Override
  2. public void connect(final Channel channel, final TransportMessage transportMessage) {
  3. try {
  4. log.info("Connecting to websocket %s sessionId %s", channel.getUri(), transportMessage.getSessionId());
  5. webSocketContainer.connectToServer(new GravityWebSocketEndpoint(channel), new GravityWebSocketEndpointConfig(channel, transportMessage), channel.getUri());
  6. }
  7. catch (Exception e) {
  8. log.error(e, "Could not connect to uri %s", channel.getUri());
  9. getStatusHandler().handleException(new TransportException("Could not connect to uri " + channel.getUri(), e));
  10. }
  11. }

相关文章