net.spy.memcached.compat.log.Logger.warn()方法的使用及代码示例

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

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

Logger.warn介绍

[英]Log a message at warning level.
[中]以警告级别记录消息。

代码示例

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

  1. @Override
  2. public void failed(Exception ex) {
  3. getLogger().warn("Cluster Response failed with: ", ex);
  4. latch.countDown();
  5. }

代码示例来源:origin: net.spy/spymemcached

  1. /**
  2. * Validate an opaque value from the header. This may be overridden from a
  3. * subclass where the opaque isn't expected to always be the same as the
  4. * request opaque.
  5. */
  6. protected boolean opaqueIsValid() {
  7. if (responseOpaque != opaque) {
  8. getLogger().warn("Expected opaque: %d, got opaque: %d\n",
  9. responseOpaque, opaque);
  10. }
  11. return responseOpaque == opaque;
  12. }

代码示例来源:origin: net.spy/spymemcached

  1. @Override
  2. public void run() {
  3. try {
  4. listener.onComplete(future);
  5. } catch(Throwable t) {
  6. getLogger().warn(
  7. "Exception thrown wile executing " + listener.getClass().getName()
  8. + ".operationComplete()", t);
  9. }
  10. }
  11. });

代码示例来源:origin: com.google.code.simple-spring-memcached/spymemcached

  1. /**
  2. * Validate an opaque value from the header. This may be overridden from a
  3. * subclass where the opaque isn't expected to always be the same as the
  4. * request opaque.
  5. */
  6. protected boolean opaqueIsValid() {
  7. if (responseOpaque != opaque) {
  8. getLogger().warn("Expected opaque: %d, got opaque: %d\n",
  9. responseOpaque, opaque);
  10. }
  11. return responseOpaque == opaque;
  12. }

代码示例来源:origin: com.amazonaws/elasticache-java-cluster-client

  1. private void trackPollingError(){
  2. pollingErrorCount++;
  3. getLogger().warn("Number of consecutive poller errors is " + Long.toString(pollingErrorCount) +
  4. ". Number of minutes since the last successful polling is " + Long.toString(date.getTime() - lastSuccessfulPoll));
  5. }

代码示例来源:origin: com.amazonaws/elasticache-java-cluster-client

  1. @Override
  2. public void run() {
  3. try {
  4. listener.onComplete(future);
  5. } catch(Throwable t) {
  6. getLogger().warn(
  7. "Exception thrown wile executing " + listener.getClass().getName()
  8. + ".operationComplete()", t);
  9. }
  10. }
  11. });

代码示例来源:origin: com.google.code.maven-play-plugin.spy/memcached

  1. @SuppressWarnings("synthetic-access")
  2. public void receivedStatus(OperationStatus status) {
  3. if(!status.isSuccess()) {
  4. getLogger().warn("Unsuccessful get: %s", status);
  5. }
  6. }
  7. public void gotData(String k, int flags, byte[] data) {

代码示例来源:origin: net.spy/spymemcached

  1. private void interruptOldAuth(MemcachedNode nodeToStop) {
  2. AuthThread toStop = nodeMap.get(nodeToStop);
  3. if (toStop != null) {
  4. if (toStop.isAlive()) {
  5. getLogger().warn(
  6. "Incomplete authentication interrupted for node " + nodeToStop);
  7. toStop.interrupt();
  8. }
  9. nodeMap.remove(nodeToStop);
  10. }
  11. }

代码示例来源:origin: com.google.code.simple-spring-memcached/spymemcached

  1. private void interruptOldAuth(MemcachedNode nodeToStop) {
  2. AuthThread toStop = nodeMap.get(nodeToStop);
  3. if (toStop != null) {
  4. if (toStop.isAlive()) {
  5. getLogger().warn(
  6. "Incomplete authentication interrupted for node " + nodeToStop);
  7. toStop.interrupt();
  8. }
  9. nodeMap.remove(nodeToStop);
  10. }
  11. }
  12. }

代码示例来源:origin: net.spy/spymemcached

  1. public Map<String, T> getSome(long to, TimeUnit unit)
  2. throws InterruptedException, ExecutionException {
  3. Collection<Operation> timedoutOps = new HashSet<Operation>();
  4. Map<String, T> ret = internalGet(to, unit, timedoutOps);
  5. if (timedoutOps.size() > 0) {
  6. timeout = true;
  7. LoggerFactory.getLogger(getClass()).warn(
  8. new CheckedOperationTimeoutException("Operation timed out: ",
  9. timedoutOps).getMessage());
  10. }
  11. return ret;
  12. }

代码示例来源:origin: com.google.code.simple-spring-memcached/spymemcached

  1. public Map<String, T> getSome(long to, TimeUnit unit)
  2. throws InterruptedException, ExecutionException {
  3. Collection<Operation> timedoutOps = new HashSet<Operation>();
  4. Map<String, T> ret = internalGet(to, unit, timedoutOps);
  5. if (timedoutOps.size() > 0) {
  6. timeout = true;
  7. LoggerFactory.getLogger(getClass()).warn(
  8. new CheckedOperationTimeoutException("Operation timed out: ",
  9. timedoutOps).getMessage());
  10. }
  11. return ret;
  12. }

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

  1. @Override
  2. public void operationComplete(ChannelFuture cf) throws Exception {
  3. if(cf.isSuccess()) {
  4. channel = cf.getChannel();
  5. } else {
  6. LOGGER.warn("Could not start monitor channel because of: ",
  7. cf.getCause());
  8. }
  9. channelLatch.countDown();
  10. }
  11. });

代码示例来源:origin: net.spy/spymemcached

  1. @Override
  2. public void receivedStatus(OperationStatus status) {
  3. if(status.isSuccess()) {
  4. supportedMechs.set(status.getMessage());
  5. getLogger().debug("Received SASL supported mechs: "
  6. + status.getMessage());
  7. } else {
  8. getLogger().warn("Received non-success response for SASL mechs: "
  9. + status);
  10. }
  11. }

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

  1. @Override
  2. public void setConfig(final String config) {
  3. try {
  4. setConfig(configurationParser.parseBucket(config));
  5. } catch (Exception ex) {
  6. getLogger().warn("Got new config to update, but could not decode it. "
  7. + "Staying with old one.", ex);
  8. }
  9. }

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

  1. private void logRunException(Exception e) {
  2. if (shutDown) {
  3. // There are a couple types of errors that occur during the
  4. // shutdown sequence that are considered OK. Log at debug.
  5. getLogger().debug("Exception occurred during shutdown", e);
  6. } else {
  7. getLogger().warn("Problem handling Couchbase IO", e);
  8. }
  9. }

代码示例来源:origin: com.google.code.simple-spring-memcached/spymemcached

  1. private void logRunException(Exception e) {
  2. if (shutDown) {
  3. // There are a couple types of errors that occur during the
  4. // shutdown sequence that are considered OK. Log at debug.
  5. getLogger().debug("Exception occurred during shutdown", e);
  6. } else {
  7. getLogger().warn("Problem handling memcached IO", e);
  8. }
  9. }
  10. }

代码示例来源:origin: com.amazonaws/elasticache-java-cluster-client

  1. @Override
  2. public void receivedStatus(OperationStatus status) {
  3. if(status.isSuccess()) {
  4. supportedMechs.set(status.getMessage());
  5. getLogger().debug("Received SASL supported mechs: "
  6. + status.getMessage());
  7. } else {
  8. getLogger().warn("Received non-success response for SASL mechs: "
  9. + status);
  10. }
  11. }

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

  1. private void logRunException(Exception e) {
  2. if (shutDown) {
  3. // There are a couple types of errors that occur during the
  4. // shutdown sequence that are considered OK. Log at debug.
  5. getLogger().debug("Exception occurred during shutdown", e);
  6. } else {
  7. getLogger().warn("Problem handling Couchbase IO", e);
  8. }
  9. }

代码示例来源:origin: com.google.code.maven-play-plugin.spy/spymemcached

  1. private void logRunException(Exception e) {
  2. if(shuttingDown) {
  3. // There are a couple types of errors that occur during the
  4. // shutdown sequence that are considered OK. Log at debug.
  5. getLogger().debug("Exception occurred during shutdown", e);
  6. } else {
  7. getLogger().warn("Problem handling memcached IO", e);
  8. }
  9. }

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

  1. @Override
  2. public void updateBucket(final String config) {
  3. try {
  4. updateBucket(getBucket(), configurationParser.parseBucket(config));
  5. } catch (Exception ex) {
  6. getLogger().warn("Got new config to update, but could not decode it. "
  7. + "Staying with old one.", ex);
  8. getLogger().debug("Problematic config is:" + config);
  9. }
  10. }

相关文章