jodd.log.Logger.info()方法的使用及代码示例

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

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

Logger.info介绍

[英]Logs a message at INFO level.
[中]在信息级别记录消息。

代码示例

代码示例来源:origin: oblac/jodd

  1. @Override
  2. public void start() {
  3. final long startTime = System.currentTimeMillis();
  4. webappConfigurations.forEach(Runnable::run);
  5. elapsed += (System.currentTimeMillis() - startTime);
  6. log.info(createInfoMessage());
  7. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Stops <em>Madvoc</em> web application.
  3. */
  4. public void stopWebApplication() {
  5. log.info("Madvoc shutting down...");
  6. if (servletContext != null) {
  7. servletContext.removeAttribute(MADVOC_ATTR);
  8. }
  9. webapp.shutdown();
  10. webapp = null;
  11. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Shutdows the web application. Triggers the STOP event.
  3. * @see MadvocComponentLifecycle
  4. */
  5. public void shutdown() {
  6. log.info("Madvoc shutting down...");
  7. madvocContainer.fireEvent(MadvocComponentLifecycle.Stop.class);
  8. }

代码示例来源:origin: oblac/jodd

  1. @Override
  2. public void init() {
  3. final long startTime = System.currentTimeMillis();
  4. try {
  5. log.info("Scanning...");
  6. classScanner.start();
  7. } catch (Exception ex) {
  8. throw new MadvocException("Scan classpath error", ex);
  9. }
  10. madvocComponents.forEach(Runnable::run);
  11. log.info("Scanning is complete.");
  12. elapsed = System.currentTimeMillis() - startTime;
  13. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Logs a message at INFO level.
  3. */
  4. default void info(final Supplier<String> messageSupplier) {
  5. if (isInfoEnabled()) {
  6. info(messageSupplier.get());
  7. }
  8. }

代码示例来源:origin: oblac/jodd

  1. @Override
  2. public void stop() {
  3. if (log != null) {
  4. log.info("MADVOC stop ----------");
  5. }
  6. if (webApp != null) {
  7. webApp.shutdown();
  8. }
  9. webApp = null;
  10. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Stops Petite container.
  3. */
  4. @Override
  5. public void stop() {
  6. if (log != null) {
  7. log.info("PETITE stop");
  8. }
  9. if (petiteContainer != null) {
  10. petiteContainer.shutdown();
  11. }
  12. petiteContainer = null;
  13. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Loads Madvoc component that will be used for configuring the user actions.
  3. * If class name is <code>null</code>, default {@link AutomagicMadvocConfigurator}
  4. * will be used.
  5. */
  6. protected void resolveMadvocConfigClass() {
  7. if ((madvocConfiguratorClassName == null) && (madvocConfiguratorClass == null)) {
  8. return;
  9. }
  10. try {
  11. if (madvocConfiguratorClassName != null) {
  12. madvocConfiguratorClass = ClassLoaderUtil.loadClass(madvocConfiguratorClassName);
  13. }
  14. log.info("Configuring Madvoc using: " + madvocConfiguratorClass.getName());
  15. } catch (Exception ex) {
  16. throw new MadvocException("Unable to load Madvoc configurator class: " + madvocConfiguratorClassName, ex);
  17. }
  18. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Creates Proxetta with all aspects. The following aspects are created:
  3. * <ul>
  4. * <li>Transaction proxy - applied on all classes that contains public top-level methods
  5. * annotated with <code>@Transaction</code> annotation. This is just one way how proxies
  6. * can be applied - since base configuration is in Java, everything is possible.</li>
  7. * </ul>
  8. */
  9. @Override
  10. public void start() {
  11. initLogger();
  12. log.info("PROXETTA start ----------");
  13. final ProxyAspect[] proxyAspectsArray = this.proxyAspects.toArray(new ProxyAspect[0]);
  14. log.debug("Total proxy aspects: " + proxyAspectsArray.length);
  15. // proxetta = Proxetta.wrapperProxetta().setCreateTargetInDefaultCtor(true).withAspects(proxyAspectsArray);
  16. proxetta = Proxetta.proxyProxetta().withAspects(proxyAspectsArray);
  17. log.info("PROXETTA OK!");
  18. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Close all the connections. Use with caution: be sure no connections are in
  3. * use before calling. Note that you are not <i>required</i> to call this
  4. * when done with a ConnectionPool, since connections are guaranteed to be
  5. * closed when garbage collected. But this method gives more control
  6. * regarding when the connections are closed.
  7. */
  8. @Override
  9. public synchronized void close() {
  10. if (log.isInfoEnabled()) {
  11. log.info("Core connection pool shutdown");
  12. }
  13. closeConnections(availableConnections);
  14. availableConnections = new ArrayList<>(maxConnections);
  15. closeConnections(busyConnections);
  16. busyConnections = new ArrayList<>(maxConnections);
  17. }

代码示例来源:origin: oblac/jodd

  1. @Override
  2. public void start() {
  3. initLogger();
  4. final String resourceName = StringUtil.replaceChar(JoyPaths.class.getName(), '.', '/') + ".class";
  5. URL url = ClassLoaderUtil.getResourceUrl(resourceName);
  6. if (url == null) {
  7. throw new JoyException("Failed to resolve app dir, missing: " + resourceName);
  8. }
  9. final String protocol = url.getProtocol();
  10. if (!protocol.equals("file")) {
  11. try {
  12. url = new URL(url.getFile());
  13. } catch (MalformedURLException ignore) {
  14. }
  15. }
  16. appDir = url.getFile();
  17. final int ndx = appDir.indexOf("WEB-INF");
  18. appDir = (ndx > 0) ? appDir.substring(0, ndx) : SystemUtil.info().getWorkingDir();
  19. System.setProperty(APP_DIR, appDir);
  20. log.info("Application folder: " + appDir);
  21. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Checks if connection provider can return a connection.
  3. */
  4. protected void checkConnectionProvider() {
  5. final Connection connection = connectionProvider.getConnection();
  6. try {
  7. final DatabaseMetaData databaseMetaData = connection.getMetaData();
  8. String name = databaseMetaData.getDatabaseProductName();
  9. String version = databaseMetaData.getDatabaseProductVersion();
  10. if (log.isInfoEnabled()) {
  11. log.info("Connected to database: " + name + " v" + version);
  12. }
  13. } catch (SQLException sex) {
  14. log.error("DB connection failed: ", sex);
  15. } finally {
  16. connectionProvider.closeConnection(connection);
  17. }
  18. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Stops the Joy.
  3. */
  4. public void stop() {
  5. joyProps.stop();
  6. try {
  7. joyDb.stop();
  8. joyPetite.stop();
  9. }
  10. catch (Exception ignore) {
  11. }
  12. if (log != null) {
  13. log.info("Joy is down. Bye, bye!");
  14. }
  15. }

代码示例来源:origin: oblac/jodd

  1. @Override
  2. public void stop() {
  3. if (!databaseEnabled) {
  4. return;
  5. }
  6. if (log != null) {
  7. log.info("DB stop");
  8. }
  9. if (jtxManager != null) {
  10. jtxManager.close();
  11. }
  12. jtxManager = null;
  13. if (connectionProvider != null) {
  14. connectionProvider.close();
  15. }
  16. connectionProvider = null;
  17. if (dbOom != null) {
  18. dbOom.shutdown();
  19. }
  20. dbOom = null;
  21. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Configures {@link jodd.petite.PetiteContainer} with specified class path.
  3. */
  4. public void configure() {
  5. long elapsed = System.currentTimeMillis();
  6. final ClassScanner classScanner = new ClassScanner();
  7. classScanner.detectEntriesMode(true);
  8. classScanner.scanDefaultClasspath();
  9. classScannerConsumers.accept(classScanner);
  10. registerAsConsumer(classScanner);
  11. try {
  12. classScanner.start();
  13. } catch (Exception ex) {
  14. throw new PetiteException("Scan classpath error", ex);
  15. }
  16. elapsed = System.currentTimeMillis() - elapsed;
  17. log.info("Petite configured in " + elapsed + " ms. Total beans: " + container.beansCount());
  18. }

代码示例来源:origin: oblac/jodd

  1. @Test
  2. void testLevel() {
  3. //when
  4. logger.trace(LoggerConstants.TRACE_MESSAGE);
  5. //then
  6. verify(log).log(java.util.logging.Level.FINER, LoggerConstants.TRACE_MESSAGE);
  7. //when
  8. logger.debug(LoggerConstants.DEBUG_MESSAGE);
  9. //then
  10. verify(log).log(java.util.logging.Level.FINE, LoggerConstants.DEBUG_MESSAGE);
  11. //when
  12. logger.info(LoggerConstants.INFO_MESSAGE);
  13. //then
  14. verify(log).log(java.util.logging.Level.INFO, LoggerConstants.INFO_MESSAGE);
  15. //when
  16. logger.warn(LoggerConstants.WARN_MESSAGE);
  17. //then
  18. verify(log).log(java.util.logging.Level.WARNING, LoggerConstants.WARN_MESSAGE);
  19. //when
  20. logger.error(LoggerConstants.ERROR_MESSAGE);
  21. //then
  22. verify(log).log(java.util.logging.Level.SEVERE, LoggerConstants.ERROR_MESSAGE);
  23. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Loads Madvoc parameters. New {@link Props} is created from the classpath.
  3. */
  4. protected Props loadMadvocParams(final String[] patterns) {
  5. if (log.isInfoEnabled()) {
  6. log.info("Loading Madvoc parameters from: " + Converter.get().toString(patterns));
  7. }
  8. try {
  9. return new Props().loadFromClasspath(patterns);
  10. } catch (Exception ex) {
  11. throw new MadvocException("Unable to load Madvoc parameters from: " +
  12. Converter.get().toString(patterns) + ".properties': " + ex.toString(), ex);
  13. }
  14. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Configures {@link DbEntityManager} with specified class path.
  3. */
  4. public void configure() {
  5. long elapsed = System.currentTimeMillis();
  6. final ClassScanner classScanner = new ClassScanner();
  7. classScanner.detectEntriesMode(true);
  8. classScanner.scanDefaultClasspath();
  9. classScannerConsumers.accept(classScanner);
  10. registerAsConsumer(classScanner);
  11. try {
  12. classScanner.start();
  13. } catch (Exception ex) {
  14. throw new DbOomException("Scan classpath error", ex);
  15. }
  16. elapsed = System.currentTimeMillis() - elapsed;
  17. if (log.isInfoEnabled()) {
  18. log.info("DbEntityManager configured in " + elapsed + "ms. Total entities: " + dbEntityManager.getTotalNames());
  19. }
  20. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Authenticate user and start user session.
  3. */
  4. protected JsonResult login() {
  5. T authToken;
  6. authToken = loginViaBasicAuth(servletRequest);
  7. if (authToken == null) {
  8. authToken = loginViaRequestParams(servletRequest);
  9. }
  10. if (authToken == null) {
  11. log.warn("Login failed.");
  12. return JsonResult.of(HttpStatus.error401().unauthorized("Login failed."));
  13. }
  14. log.info("login OK!");
  15. final UserSession<T> userSession = new UserSession<>(authToken, userAuth.tokenValue(authToken));
  16. userSession.start(servletRequest, servletResponse);
  17. // return token
  18. return tokenAsJson(authToken);
  19. }

代码示例来源:origin: oblac/jodd

  1. @Test
  2. void testLog() {
  3. //given
  4. throwable = mock(Throwable.class);
  5. //when
  6. //The below methods are no op methods in actual implementations.
  7. //so we will not be able to verify anything
  8. logger.log(Level.DEBUG, name);
  9. logger.trace(name);
  10. logger.debug(name);
  11. logger.info(name);
  12. logger.warn(name);
  13. logger.warn(name, throwable);
  14. logger.error(name);
  15. logger.error(name, throwable);
  16. }

相关文章