com.metamx.common.logger.Logger.wtf()方法的使用及代码示例

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

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

Logger.wtf介绍

暂无

代码示例

代码示例来源:origin: com.n3twork.druid/druid-server

  1. log.wtf(e, "This can only happen if the .exists() call lied. That's f'd up.");

代码示例来源:origin: com.n3twork.druid/druid-server

  1. @LifecycleStop
  2. public void stop() throws IOException
  3. {
  4. synchronized (lock) {
  5. if (childrenCache == null) {
  6. return;
  7. }
  8. // This close() call actually calls shutdownNow() on the executor registered with the Cache object...
  9. childrenCache.close();
  10. childrenCache = null;
  11. }
  12. for (String containerKey : Lists.newArrayList(containers.keySet())) {
  13. final ContainerHolder containerHolder = containers.remove(containerKey);
  14. if (containerHolder == null) {
  15. log.wtf("!? Got key[%s] from keySet() but it didn't have a value!?", containerKey);
  16. } else {
  17. // This close() call actually calls shutdownNow() on the executor registered with the Cache object...
  18. containerHolder.getCache().close();
  19. }
  20. }
  21. }

代码示例来源:origin: io.druid.extensions/druid-rabbitmq

  1. @Override
  2. public InputRow nextRow()
  3. {
  4. if (delivery == null) {
  5. //Just making sure.
  6. log.wtf("I have nothing in delivery. Method hasMore() should have returned false.");
  7. return null;
  8. }
  9. return stringParser.parse(StringUtils.fromUtf8(delivery.getBody()));
  10. }

代码示例来源:origin: metamx/java-util

  1. @Override
  2. public ClientResponse<InputStream> done(ClientResponse<InputStream> clientResponse)
  3. {
  4. synchronized (done) {
  5. try {
  6. // An empty byte array is put at the end to give the SequenceInputStream.close() as something to close out
  7. // after done is set to true, regardless of the rest of the stream's state.
  8. queue.put(ByteSource.empty().openStream());
  9. log.debug("Added terminal empty stream");
  10. }
  11. catch (InterruptedException e) {
  12. log.warn(e, "Thread interrupted while adding to queue");
  13. Thread.currentThread().interrupt();
  14. throw Throwables.propagate(e);
  15. }
  16. catch (IOException e) {
  17. // This should never happen
  18. log.wtf(e, "The empty stream threw an IOException");
  19. throw Throwables.propagate(e);
  20. }
  21. finally {
  22. log.debug("Done after adding %d bytes of streams", byteCount.get());
  23. done.set(true);
  24. }
  25. }
  26. return ClientResponse.<InputStream>finished(clientResponse.getObj());
  27. }

代码示例来源:origin: com.metamx/http-client

  1. @Override
  2. public ClientResponse<InputStream> done(ClientResponse<InputStream> clientResponse)
  3. {
  4. synchronized (done) {
  5. try {
  6. // An empty byte array is put at the end to give the SequenceInputStream.close() as something to close out
  7. // after done is set to true, regardless of the rest of the stream's state.
  8. queue.put(ByteSource.empty().openStream());
  9. log.debug("Added terminal empty stream");
  10. }
  11. catch (InterruptedException e) {
  12. log.warn(e, "Thread interrupted while adding to queue");
  13. Thread.currentThread().interrupt();
  14. throw Throwables.propagate(e);
  15. }
  16. catch (IOException e) {
  17. // This should never happen
  18. log.wtf(e, "The empty stream threw an IOException");
  19. throw Throwables.propagate(e);
  20. }
  21. finally {
  22. log.debug("Done after adding %d bytes of streams", byteCount.get());
  23. done.set(true);
  24. }
  25. }
  26. return ClientResponse.<InputStream>finished(clientResponse.getObj());
  27. }

代码示例来源:origin: com.metamx/java-util

  1. @Override
  2. public ClientResponse<InputStream> done(ClientResponse<InputStream> clientResponse)
  3. {
  4. synchronized (done) {
  5. try {
  6. // An empty byte array is put at the end to give the SequenceInputStream.close() as something to close out
  7. // after done is set to true, regardless of the rest of the stream's state.
  8. queue.put(ByteSource.empty().openStream());
  9. log.debug("Added terminal empty stream");
  10. }
  11. catch (InterruptedException e) {
  12. log.warn(e, "Thread interrupted while adding to queue");
  13. Thread.currentThread().interrupt();
  14. throw Throwables.propagate(e);
  15. }
  16. catch (IOException e) {
  17. // This should never happen
  18. log.wtf(e, "The empty stream threw an IOException");
  19. throw Throwables.propagate(e);
  20. }
  21. finally {
  22. log.debug("Done after adding %d bytes of streams", byteCount.get());
  23. done.set(true);
  24. }
  25. }
  26. return ClientResponse.<InputStream>finished(clientResponse.getObj());
  27. }

代码示例来源:origin: io.druid.extensions/druid-rabbitmq

  1. @Override
  2. public boolean hasMore()
  3. {
  4. delivery = null;
  5. try {
  6. // Wait for the next delivery. This will block until something is available.
  7. delivery = consumer.nextDelivery();
  8. if (delivery != null) {
  9. lastDeliveryTag = delivery.getEnvelope().getDeliveryTag();
  10. // If delivery is non-null, we report that there is something more to process.
  11. return true;
  12. }
  13. }
  14. catch (InterruptedException e) {
  15. // A little unclear on how we should handle this.
  16. // At any rate, we're in an unknown state now so let's log something and return false.
  17. log.wtf(e, "Got interrupted while waiting for next delivery. Doubt this should ever happen.");
  18. }
  19. // This means that delivery is null or we caught the exception above so we report that we have
  20. // nothing more to process.
  21. return false;
  22. }

相关文章