org.esupportail.commons.services.logging.Logger类的使用及代码示例

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

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

Logger介绍

暂无

代码示例

代码示例来源:origin: org.esupportail/esup-commons2-jsf2

  1. /**
  2. * Make an EL Expression.
  3. * EX. : #{param}
  4. * @param param
  5. * @return String
  6. */
  7. public static String makeELExpression(final String param) {
  8. if (LOG.isDebugEnabled()) {
  9. LOG.debug("entering makeELExpression(" + param + " )");
  10. }
  11. return "#{" + param + "}";
  12. }

代码示例来源:origin: org.esupportail/ects-domain-services

  1. /**
  2. * @see org.esupportail.ects.domain.DomainService#getSignataires()
  3. */
  4. @Override
  5. @Cacheable(cacheName = CacheModelConst.REF_DEFAULT_MODEL)
  6. public SignataireWSSignataireDTO[] getSignataires() {
  7. if (logger.isDebugEnabled()) {
  8. logger.debug("entering getSignataires()");
  9. }
  10. SignataireWSSignataireDTO[] res = null;
  11. try {
  12. ReferentielMetierServiceInterface referentielMetierService
  13. = (ReferentielMetierServiceInterface) WSUtils.getService(WSUtils.REFERENTIEL_SERVICE_NAME);
  14. // Recherche des signataires dans Apogee
  15. // recupererSignataire( _codSig, _temoinEnService)
  16. res = referentielMetierService.recupererSignataire("", "O");
  17. } catch (RemoteException e) {
  18. logger.error("RemoteException in getSignataires() = " + e);
  19. return null;
  20. } catch (WebBaseException e) {
  21. logger.error("WebBaseException in getSignataires() = " + e);
  22. return null;
  23. }
  24. return res;
  25. }

代码示例来源:origin: org.esupportail/esup-commons2-exceptionHandling

  1. /**
  2. * Log a text report.
  3. * @param t
  4. * @param textReport
  5. */
  6. protected void logTextReport(final Throwable t, final String textReport) {
  7. if (SimpleExceptionServiceFactoryImpl.ERROR.equals(logLevel.toLowerCase())) {
  8. logger.error(textReport);
  9. } else if (SimpleExceptionServiceFactoryImpl.WARN.equals(logLevel.toLowerCase())) {
  10. logger.error(ExceptionUtils.getShortPrintableStackTrace(t));
  11. logger.warn(textReport);
  12. } else if (SimpleExceptionServiceFactoryImpl.INFO.equals(logLevel.toLowerCase())) {
  13. logger.error(ExceptionUtils.getShortPrintableStackTrace(t));
  14. logger.info(textReport);
  15. } else if (SimpleExceptionServiceFactoryImpl.TRACE.equals(logLevel.toLowerCase())) {
  16. logger.error(ExceptionUtils.getShortPrintableStackTrace(t));
  17. if (logger.isTraceEnabled()) {
  18. logger.trace(textReport);
  19. }
  20. } else {
  21. logger.error(ExceptionUtils.getShortPrintableStackTrace(t));
  22. if (logger.isDebugEnabled()) {
  23. logger.debug(textReport);
  24. }
  25. }
  26. }

代码示例来源:origin: org.esupportail/esup-commons2-web

  1. @Override
  2. public void afterPropertiesSet() {
  3. if (authorizedClientNames == null || authorizedClientNames.isEmpty()) {
  4. authorizedClientNames = null;
  5. logger.warn("property authorizedClients is not set, no access control will be done.");
  6. }
  7. if (logger.isDebugEnabled()) {
  8. for (String authorizedClientName : authorizedClientNames) {
  9. logger.debug("authorized client: " + authorizedClientName);
  10. }
  11. }
  12. }

代码示例来源:origin: org.esupportail/esup-commons2-dao

  1. /**
  2. * @return the hql request.
  3. */
  4. public String buildHql() {
  5. if (log.isDebugEnabled()) {
  6. log.debug("entering HqlQueryPojo.buildHql()");
  7. }
  8. StringBuilder hql = new StringBuilder();
  9. hql.append(appendHql(select, "SELECT ", ", "));
  10. hql.append(appendHql(from, " FROM ", ", "));
  11. hql.append(appendHql(where, " WHERE ", " AND "));
  12. log.info("exiting HqlQueryPojo.buildHql() with hql = " + hql.toString());
  13. return hql.toString();
  14. }

代码示例来源:origin: org.esupportail/esup-commons2-web

  1. /**
  2. * Debug any object.
  3. * @param logger
  4. * @param title
  5. * @param o
  6. */
  7. public static void print(final Logger logger, final String title, final Object o) {
  8. logger.debug("*******************************************************************");
  9. print(logger, title, o, 1);
  10. logger.debug("*******************************************************************");
  11. }

代码示例来源:origin: org.esupportail/esup-opi-domain-beans

  1. /**
  2. * @return the candidats
  3. */
  4. public Map<Individu, Date> getDateParCandidat() {
  5. if (dateParCandidat == null) {
  6. logger.debug("Dans getDateParCandidat : " + dateParCandidat);
  7. dateParCandidat = new HashMap<Individu, Date>();
  8. for (IndividuDate indDate : candidats) {
  9. if (!dateParCandidat.containsKey(indDate.getCandidat())
  10. && indDate.getDateRdv().after(new Date())) {
  11. dateParCandidat.put(indDate.getCandidat(), indDate.getDateRdv());
  12. }
  13. }
  14. logger.info("En fin de getDateParCandidat : " + dateParCandidat);
  15. }
  16. return dateParCandidat;
  17. }

代码示例来源:origin: org.esupportail/ects-utils

  1. /**
  2. * @param file
  3. * @param facesContext
  4. * @param contentType
  5. */
  6. public void setDownLoadAndSend(final File file,
  7. final FacesContext facesContext,
  8. final String contentType,
  9. final String contentDisposition) {
  10. try {
  11. LOGGER.debug("DownloadUtils.setDownload(data," + contentType + "," + contentDisposition + ")");
  12. Long id = DownloadUtils.setDownload(file, contentType, contentDisposition);
  13. String url = getDownloadUrl(id);
  14. ExternalContext externalContext = facesContext.getExternalContext();
  15. externalContext.redirect(url);
  16. facesContext.responseComplete();
  17. } catch (IOException e) {
  18. LOGGER.error("probleme lors de l envoi d un ficher. - exception : " + e);
  19. }
  20. }

代码示例来源:origin: org.esupportail/esup-commons2-exceptionHandling

  1. @Override
  2. public void handleException() throws ExceptionHandlingException {
  3. logger.error(throwable);
  4. throw new ExceptionHandlingException(throwable);
  5. }

代码示例来源:origin: org.esupportail/esup-commons2-jsf

  1. @Override
  2. protected void debugEvent(
  3. final PhaseEvent event,
  4. final String string) {
  5. if (logger.isDebugEnabled()) {
  6. super.debugEvent(event, string);
  7. debugMessages(event);
  8. }
  9. }

代码示例来源:origin: org.esupportail/esup-commons2-hibernate

  1. /**
  2. * Update the database.
  3. * @throws ConfigException
  4. */
  5. public static void update() throws ConfigException {
  6. LOG.info("updating the database, please wait...");
  7. LOG.info("this operation may take from a few seconds to a couple of hours for huge migrations.");
  8. LOG.info("do not interrupt!");
  9. getDatabaseManagerStore().update();
  10. LOG.info("done.");
  11. }

代码示例来源:origin: org.esupportail/esup-commons2-web

  1. @Override
  2. public void afterPropertiesSet() {
  3. if (casLoginUrl == null) {
  4. if (casUrl == null) {
  5. logger.warn("casLoginUrl and casUrl are null, URLs via CAS will not be available");
  6. } else {
  7. casLoginUrl = casUrl + "/login?service=%s";
  8. }
  9. }
  10. }

代码示例来源:origin: org.esupportail/esup-opi-domain-beans

  1. String methodId = "get" + new String(charTable);
  2. if (log.isDebugEnabled()) {
  3. log.debug("Methode id : " + methodId);
  4. Method m = methods[i];
  5. if (m.getName().equals(methodId)) {
  6. if (log.isDebugEnabled()) {
  7. log.debug("methods : " + m.getName());
  8. log.warn("l'attribut " + methodId + " représentant l'identifiant n'existe pas");
  9. return null;

代码示例来源:origin: org.esupportail/ects-domain-services

  1. if (logger.isDebugEnabled()) {
  2. logger.debug("entering getUtilisateurApo(" + id + ")");
  3. logger.info("userApo = " + userApo.getCodUti());
  4. } else {
  5. logger.info("userApo = null");

代码示例来源:origin: org.esupportail/example-domain-services

  1. /**
  2. * @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet()
  3. */
  4. @Override
  5. public void afterPropertiesSet() throws Exception {
  6. logger.debug("in afterPropertiesSet");
  7. Assert.notNull(this.daoService,
  8. "property daoService of class " + this.getClass().getName() + " can not be null");
  9. }

代码示例来源:origin: org.esupportail/esup-opi-domain-beans

  1. List<Date> liste = new ArrayList<Date>();
  2. SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy.MM.dd G HH:mm:ss z");
  3. logger.debug("Cal : " + sdf1.format(cal.getTime()));
  4. debMatin.setTime(cal.getTime());
  5. logger.info("Horaires : " + getHoraires());
  6. debMatin.set(Calendar.MILLISECOND, deb.get(Calendar.MILLISECOND));
  7. logger.debug("Debut : " + debMatin.toString());
  8. logger.debug("Fin : " + finMatin.toString());
  9. logger.info("Le creneau " + date.toString()
  10. + "est plein ! On ne propose pas cette date !");
  11. if (!etudiant) {

代码示例来源:origin: org.esupportail/ects-utils

  1. /**
  2. * @param data
  3. * @param facesContext
  4. * @param contentType
  5. * @param fileName
  6. */
  7. public void setDownLoadAndSend(final byte[] data,
  8. final FacesContext facesContext,
  9. final String contentType,
  10. final String contentDisposition,
  11. final String fileName) {
  12. try {
  13. LOGGER.debug("DownloadUtils.setDownload(data," + fileName + "," + contentType + "," + contentDisposition + ")");
  14. Long id = DownloadUtils.setDownload(data, fileName, contentType, contentDisposition);
  15. String url = getDownloadUrl(id);
  16. ExternalContext externalContext = facesContext.getExternalContext();
  17. externalContext.redirect(url);
  18. facesContext.responseComplete();
  19. } catch (IOException e) {
  20. LOGGER.error("probleme lors de l envoi d un ficher = " + fileName + "exception : " + e);
  21. }
  22. }

代码示例来源:origin: org.esupportail/esup-opi-web-beans

  1. /**
  2. * @param zipStream
  3. * @param fileNameCsv
  4. * @param map
  5. * @return ZipOutputStream
  6. */
  7. public static ZipOutputStream prepareCSVinZip(final ZipOutputStream zipStream,
  8. final String fileNameCsv, final Map<Integer, List<String>> map) {
  9. try {
  10. String s = makeCvs(map);
  11. ZipEntry zipEntry = new ZipEntry(fileNameCsv);
  12. zipStream.putNextEntry(zipEntry);
  13. zipStream.write(s.getBytes());
  14. zipStream.closeEntry();
  15. } catch (IOException e) {
  16. LOGGER.error("probleme de preparation du zip contenant le csv = "
  17. + fileNameCsv + "exception : " + e);
  18. }
  19. return zipStream;
  20. }

代码示例来源:origin: org.esupportail/esup-commons2-jsf2

  1. @Override
  2. protected void debugEvent(
  3. final PhaseEvent event,
  4. final String string) {
  5. if (logger.isDebugEnabled()) {
  6. super.debugEvent(event, string);
  7. debugMessages(event);
  8. }
  9. }

代码示例来源:origin: org.esupportail/esup-commons2-hibernate

  1. /**
  2. * Create the database.
  3. * @throws ConfigException
  4. */
  5. public static void create() throws ConfigException {
  6. LOG.info("creating the databases, please wait...");
  7. LOG.info("this operation may take a few minutes, do not interrupt!");
  8. getDatabaseManagerStore().create();
  9. LOG.info("done.");
  10. }

相关文章