org.boon.Logger类的使用及代码示例

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

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

Logger介绍

[英]This class allows isolation of all logging dependencies in one place. There is 0 dependencies on third party logs

By default logging uses uses JDK logging. The logging configuration file (logging.properties). You can use standard JDK logging config.
I wrote similar facilities in Crank and EasyJava, but this style was heavily inspired by Vertx which was inspired by JBoss.
[中]此类允许在一个位置隔离所有日志依赖项。对第三方日志有0个依赖项
默认情况下,日志记录使用JDK日志记录。日志配置文件(logging.properties)。您可以使用标准的JDK日志配置。
我用Crank和EasyJava编写了类似的工具,但这种风格的灵感来源于JBoss的Vertx。

代码示例

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

  1. @Override
  2. public void log(String message) {
  3. logger.info("FROM DATABASE LOG", message);
  4. }
  5. });

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

  1. @Override
  2. public void run() {
  3. try {
  4. manageTimer();
  5. } catch (Exception ex) {
  6. logger.error(ex, "can't manage timeHolder");
  7. }
  8. }
  9. }, 50, 50, TimeUnit.MILLISECONDS);

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

  1. @Override
  2. public boolean has(Class type) {
  3. if (debug) logger.debug(contextImpl, "has( type )", "IN", type);
  4. if (debug) logger.debug(contextImpl, "has( type )", "IN", type);
  5. for (Module module : modules) {
  6. if (module.has(type)) {
  7. if (debug) logger.debug(contextImpl, "has( type )", "IN", type, "OUT", true);
  8. return true;
  9. }
  10. }
  11. if (debug) logger.debug(contextImpl, "has( type )", "IN", type, "OUT", false);
  12. return false;
  13. }

代码示例来源:origin: RichardHightower/slumberdb

  1. private void doHandleCallFromClient(final Map<String, String> message, String uri, final Object commChannel) {
  2. try {
  3. if (debug) logger.info("RequestHandler::doHandleCallFromClient", message);
  4. final DataStoreRequest dataStoreRequest = createRequest(message);
  5. if (debug) logger.info("RequestHandler::doHandleCallFromClient", dataStoreRequest);
  6. storeServer.registerOutputHandler(dataStoreRequest.clientId(), commChannel);
  7. mainRequestHandler(dataStoreRequest);
  8. } catch (Exception ex) {
  9. logger.error(ex, "RequestHandler::Unable to handle request");
  10. logger.error("RequestHandler::Unable to handle request MAP DATA", message);
  11. }
  12. }

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

  1. public void handleSQLException(SQLException ex) {
  2. SQLException next = ex.getNextException();
  3. while (next != null) {
  4. logger.warn(next, "BasyMySQLSupport Nested SQL Exception", next.getMessage());
  5. next = ex.getNextException();
  6. }
  7. }

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

  1. outputMap.clear();
  2. } catch (Exception ex) {
  3. logger.error(ex, "MySQL Store, Unable to add an item to the store queue, this means we can't write to MySQL buf size",
  4. outputMap.size(), "queue size", writeQueue.size());
  5. logger.fatal(ex, "MySQL Store, Unable to add an item to the store queue, this means we can't write to MySQL",
  6. outputMap.size(), "queue size", writeQueue.size());

代码示例来源: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. /**
  2. * Returns a logger.
  3. * Facade into config system.
  4. *
  5. * @param name name of logger based.
  6. * @return logger.
  7. */
  8. public static Logger logger(String name) {
  9. return new Logger(Logging.logger(name));
  10. }

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

  1. /**
  2. * Handles an Exception.
  3. * @param ex
  4. */
  5. public void handleSQLException(SQLException ex) {
  6. SQLException next = ex.getNextException();
  7. while (next != null) {
  8. logger.warn(next, "BasyMySQLSupport Nested SQL Exception", next.getMessage());
  9. next = ex.getNextException();
  10. }
  11. }

代码示例来源: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. * Returns a configurable logger.
  3. * Facade into config system.
  4. *
  5. * @param name name of logger based.
  6. * @return logger.
  7. */
  8. public static Logger configurableLogger(String name) {
  9. return new Logger(Logging.configurableLogger(name));
  10. }

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

  1. @Override
  2. public void log(String message) {
  3. logger.info("FROM DATABASE LOG", message);
  4. }
  5. });

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

  1. @Override
  2. public void run() {
  3. try {
  4. manageTimer();
  5. } catch (Exception ex) {
  6. logger.error(ex, "can't manage timeHolder");
  7. }
  8. }
  9. }, 50, 50, TimeUnit.MILLISECONDS);

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

  1. @Override
  2. public boolean has(Class type) {
  3. if (debug) logger.debug(contextImpl, "has( type )", "IN", type);
  4. if (debug) logger.debug(contextImpl, "has( type )", "IN", type);
  5. for (Module module : modules) {
  6. if (module.has(type)) {
  7. if (debug) logger.debug(contextImpl, "has( type )", "IN", type, "OUT", true);
  8. return true;
  9. }
  10. }
  11. if (debug) logger.debug(contextImpl, "has( type )", "IN", type, "OUT", false);
  12. return false;
  13. }

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

  1. public void handleSQLException(SQLException ex) {
  2. SQLException next = ex.getNextException();
  3. while (next != null) {
  4. logger.warn(next, "BasyMySQLSupport Nested SQL Exception", next.getMessage());
  5. next = ex.getNextException();
  6. }
  7. }

代码示例来源: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. * Returns a configurable logger.
  3. * Facade into config system.
  4. *
  5. * @param clazz name of logger based on classname.
  6. * @return logger.
  7. */
  8. public static Logger configurableLogger(final Class<?> clazz) {
  9. return new Logger(Logging.configurableLogger(clazz.getName()));
  10. }

代码示例来源:origin: io.fastjson/slumberdb-leveldb

  1. @Override
  2. public void log(String message) {
  3. logger.info("FROM DATABASE LOG", message);
  4. }
  5. });

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

  1. @Override
  2. public void run() {
  3. try {
  4. processSets();
  5. }
  6. catch (Exception ex) {
  7. logger.error(ex, "ReplicationDataStore failed");
  8. }
  9. }
  10. });

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

  1. @Override
  2. public void parent(Context context) {
  3. if (debug) logger.debug(contextImpl, "parent");
  4. this.parent.set(context);
  5. }

相关文章