/mycila-log/tags/mycila-log-2.12/src/main/java/com/mycila/log/log4j/Log4jLogger.java

http://mycila.googlecode.com/ · Java · 73 lines · 47 code · 8 blank · 18 comment · 2 complexity · fa990c3bfc84802ab4e6332cd057ae73 MD5 · raw file

  1. /**
  2. * Copyright (C) 2008 Mathieu Carbou <mathieu.carbou@gmail.com>
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mycila.log.log4j;
  17. import com.mycila.log.AbstractLogger;
  18. import org.apache.log4j.Level;
  19. import org.apache.log4j.Logger;
  20. /**
  21. * @author Mathieu Carbou (mathieu.carbou@gmail.com)
  22. */
  23. public final class Log4jLogger extends AbstractLogger {
  24. private final Logger logger;
  25. public Log4jLogger(String name) {
  26. this.logger = Logger.getLogger(name);
  27. }
  28. public boolean canLog(com.mycila.log.Level level) {
  29. switch (level) {
  30. case TRACE:
  31. return logger.isEnabledFor(Level.TRACE);
  32. case DEBUG:
  33. return logger.isEnabledFor(Level.DEBUG);
  34. case INFO:
  35. return logger.isEnabledFor(Level.INFO);
  36. case WARN:
  37. return logger.isEnabledFor(Level.WARN);
  38. case ERROR:
  39. return logger.isEnabledFor(Level.ERROR);
  40. default:
  41. return false;
  42. }
  43. }
  44. @Override
  45. protected void doLog(com.mycila.log.Level level, Throwable throwable, Object message, Object... args) {
  46. switch (level) {
  47. case TRACE:
  48. logger.log(Level.TRACE, String.format(String.valueOf(message), args), throwable);
  49. break;
  50. case DEBUG:
  51. logger.log(Level.DEBUG, String.format(String.valueOf(message), args), throwable);
  52. break;
  53. case INFO:
  54. logger.log(Level.INFO, String.format(String.valueOf(message), args), throwable);
  55. break;
  56. case WARN:
  57. logger.log(Level.WARN, String.format(String.valueOf(message), args), throwable);
  58. break;
  59. case ERROR:
  60. logger.log(Level.ERROR, String.format(String.valueOf(message), args), throwable);
  61. break;
  62. default:
  63. }
  64. }
  65. }