org.webpieces.util.logging.Logger.debug()方法的使用及代码示例

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

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

Logger.debug介绍

[英]Log a message at the DEBUG level. Usage: log.debug(()->"my lazy log statement")
[中]在调试级别记录消息。用法:日志。调试(()->“我的惰性日志语句”)

代码示例

代码示例来源:origin: org.webpieces/core-util

  1. public CompletableFuture<RESP> get() {
  2. log.debug(() -> "key:"+key+" start virtual single thread. ");
  3. CompletableFuture<RESP> fut = processor.get();
  4. log.debug(() -> "key:"+key+" halfway there. future needs to be acked to finish work and release virtual thread");
  5. return fut;
  6. }
  7. };

代码示例来源:origin: org.webpieces/core-util

  1. private <RESP> CompletableFuture<RESP> release(RESP v, Throwable e) {
  2. log.debug(() -> "key:"+key+" end virtual single thread");
  3. //immediately release when future is complete
  4. queue.releasePermit();
  5. CompletableFuture<RESP> future = new CompletableFuture<RESP>();
  6. if (e != null) {
  7. future.completeExceptionally(e);
  8. } else
  9. future.complete(v);
  10. return future;
  11. }

代码示例来源:origin: org.webpieces/core-util

  1. public <RESP> CompletableFuture<RESP> runRequest(Supplier<CompletableFuture<RESP>> processor) {
  2. Supplier<CompletableFuture<RESP>> proxy = new Supplier<CompletableFuture<RESP>>() {
  3. public CompletableFuture<RESP> get() {
  4. log.debug(() -> "key:"+key+" start virtual single thread. ");
  5. CompletableFuture<RESP> fut = processor.get();
  6. log.debug(() -> "key:"+key+" halfway there. future needs to be acked to finish work and release virtual thread");
  7. return fut;
  8. }
  9. };
  10. log.debug(() -> "key:"+key+" get virtual thread or wait");
  11. return queue.runRequest(proxy)
  12. .handle((v, e) -> {
  13. return release(v, e);
  14. })
  15. .thenCompose(Function.identity());
  16. }

代码示例来源:origin: org.webpieces/http-router

  1. public void addScopeToCookieIfExist(List<RouterCookie> cookies, CookieScope cookie1) {
  2. if(!(cookie1 instanceof CookieScopeImpl))
  3. throw new IllegalArgumentException("Cookie is not the right data type="+cookie1.getClass()+" needs to be of type "+CookieScopeImpl.class);
  4. CookieScopeImpl data = (CookieScopeImpl) cookie1;
  5. if(data.isNeedCreateSetCookie()) {
  6. log.debug(()->"translating cookie="+cookie1.getName()+" to send to browser");
  7. RouterCookie cookie = translateScopeToCookie(data);
  8. cookies.add(cookie);
  9. } else if(data.isNeedCreateDeleteCookie()) {
  10. log.debug(()->"creating delete cookie for "+cookie1.getName()+" to send to browser");
  11. RouterCookie cookie = createDeleteCookie(data.getName());
  12. cookies.add(cookie);
  13. } else {
  14. log.debug(()->"not sending any cookie to browser for cookie="+cookie1.getName());
  15. }
  16. }

代码示例来源:origin: org.webpieces/core-statemachine

  1. /**
  2. * @param smState
  3. * @param evt
  4. */
  5. public void fireEvent(StateMachineState smState, Object evt)
  6. {
  7. TransitionImpl transition = evtToTransition.get(evt);
  8. if(transition == null) {
  9. log.debug(() -> smState+"No Transition: "+getName()+" -> <no transition found>, event="+evt);
  10. if(noTransitionListener != null)
  11. noTransitionListener.noTransitionFromEvent(smState.getCurrentState(), evt);
  12. return;
  13. }
  14. State nextState = transition.getEndState();
  15. if(log.isDebugEnabled())
  16. log.debug(() -> smState+"Transition: "+getName()+" -> "+nextState+", event="+evt);
  17. try {
  18. smState.setCurrentState(nextState);
  19. } catch(RuntimeException e) {
  20. log.warn(smState+"Transition FAILED: "+getName()+" -> "+nextState+", event="+evt);
  21. throw e;
  22. }
  23. }

相关文章