org.boon.Logger.fatal()方法的使用及代码示例

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

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

Logger.fatal介绍

暂无

代码示例

代码示例来源:origin: boonproject/boon

  1. @Override
  2. public void run() {
  3. if (stop.get()) {
  4. return;
  5. }
  6. try {
  7. processReadQueue();
  8. } catch (InterruptedException ex) {
  9. //let it restart or stop
  10. } catch (Exception ex) {
  11. logger.fatal(ex, "Problem with base data store running scheduled job");
  12. }
  13. }
  14. }, 0, dataStoreConfig.threadErrorResumeTimeMS(), TimeUnit.MILLISECONDS);

代码示例来源:origin: boonproject/boon

  1. @Override
  2. public void run() {
  3. if (stop.get()) {
  4. return;
  5. }
  6. try {
  7. processWriteQueue();
  8. } catch (InterruptedException ex) {
  9. //let it restart or stop
  10. } catch (Exception ex) {
  11. logger.fatal(ex);
  12. }
  13. }
  14. }, 0, dataStoreConfig.threadErrorResumeTimeMS(), TimeUnit.MILLISECONDS);

代码示例来源:origin: boonproject/boon

  1. /**
  2. * Like puts but for fatal logging.
  3. *
  4. * @param messages messages to write.
  5. */
  6. public static void fatal(Object... messages) {
  7. _log().fatal(messages);
  8. }

代码示例来源:origin: boonproject/boon

  1. /**
  2. * Like puts but for warn exception logging.
  3. *
  4. * @param t throwable
  5. * @param messages messages to write.
  6. */
  7. public static void fatal(Throwable t, Object... messages) {
  8. _log().fatal(t, messages);
  9. }

代码示例来源:origin: boonproject/boon

  1. /**
  2. * Like puts but for fatal logging.
  3. *
  4. * @param messages messages to write.
  5. */
  6. public static void fatal(Object... messages) {
  7. _log().fatal(messages);
  8. }

代码示例来源:origin: boonproject/boon

  1. /**
  2. * Like puts but for warn exception logging.
  3. *
  4. * @param t throwable
  5. * @param messages messages to write.
  6. */
  7. public static void fatal(Throwable t, Object... messages) {
  8. _log().fatal(t, messages);
  9. }

代码示例来源:origin: io.fastjson/boon

  1. /**
  2. * Like puts but for fatal logging.
  3. *
  4. * @param messages messages to write.
  5. */
  6. public static void fatal(Object... messages) {
  7. _log().fatal(messages);
  8. }

代码示例来源:origin: io.fastjson/boon

  1. /**
  2. * Like puts but for warn exception logging.
  3. *
  4. * @param t throwable
  5. * @param messages messages to write.
  6. */
  7. public static void fatal(Throwable t, Object... messages) {
  8. _log().fatal(t, messages);
  9. }

代码示例来源:origin: boonproject/boon

  1. private void handleRemove(List<DataStoreRequest> operations) {
  2. for (DataStoreRequest dataItem : operations) {
  3. if (dataItem instanceof RemoveRequest) {
  4. RemoveRequest request = (RemoveRequest) dataItem;
  5. if (hasBlackList) {
  6. if (keyblackList.contains(request.key())) {
  7. continue;
  8. }
  9. }
  10. removeList.add(request.key());
  11. if (removeList.size() >= maxWriteBatch) {
  12. try {
  13. writeQueue.put(outputMap);
  14. removeList.clear();
  15. } catch (Exception ex) {
  16. logger.fatal(ex, "MySQL Store, Unable to add an item to the store queue for REMOVE, this means we can't write to MySQL",
  17. removeList.size(), "queue size", writeQueue.size());
  18. }
  19. }
  20. }
  21. }
  22. }

代码示例来源:origin: boonproject/boon

  1. logger.fatal(ex, "MySQL Store, Unable to add an item to the store queue, this means we can't write to MySQL",
  2. outputMap.size(), "queue size", writeQueue.size());

代码示例来源:origin: boonproject/boon

  1. @Override
  2. public Object parse( Reader reader ) {
  3. if (reader instanceof StringReader) {
  4. try {
  5. String str = BeanUtils.idxStr(reader, "str");
  6. int length = BeanUtils.idxInt(reader, "length");
  7. int next = BeanUtils.idxInt(reader, "next");
  8. if (str!= null && next == 0 && length == str.length()) {
  9. return parse(str);
  10. }
  11. } catch (Exception ex) {
  12. Boon.logger("JSON PARSER").fatal(ex);
  13. }
  14. }
  15. characterSource = new ReaderCharacterSource ( reader );
  16. return this.decodeValue ();
  17. }

代码示例来源:origin: boonproject/boon

  1. @Override
  2. public Object parse( Reader reader ) {
  3. if (reader instanceof StringReader) {
  4. try {
  5. String str = BeanUtils.idxStr(reader, "str");
  6. int length = BeanUtils.idxInt(reader, "length");
  7. int next = BeanUtils.idxInt(reader, "next");
  8. if (str!= null && next == 0 && length == str.length()) {
  9. return parse(str);
  10. }
  11. } catch (Exception ex) {
  12. Boon.logger("JSON PARSER").fatal(ex);
  13. }
  14. }
  15. characterSource = new ReaderCharacterSource ( reader );
  16. return this.decodeValue ();
  17. }

代码示例来源:origin: io.fastjson/boon

  1. @Override
  2. public Object parse( Reader reader ) {
  3. if (reader instanceof StringReader) {
  4. try {
  5. String str = BeanUtils.idxStr(reader, "str");
  6. int length = BeanUtils.idxInt(reader, "length");
  7. int next = BeanUtils.idxInt(reader, "next");
  8. if (str!= null && next == 0 && length == str.length()) {
  9. return parse(str);
  10. }
  11. } catch (Exception ex) {
  12. Boon.logger("JSON PARSER").fatal(ex);
  13. }
  14. }
  15. characterSource = new ReaderCharacterSource ( reader );
  16. return this.decodeValue ();
  17. }

相关文章