Improvements and refinements to web site
[zxing.git] / zxingorg / src / com / google / zxing / web / ServletContextLogHandler.java
1 /*
2  * Copyright 2008 Google Inc.
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
17 package com.google.zxing.web;
18
19 import javax.servlet.ServletContext;
20 import java.util.logging.Formatter;
21 import java.util.logging.Handler;
22 import java.util.logging.LogRecord;
23
24 /**
25  * A {@link Handler} that redirects log messages to the servlet container log.
26  * 
27  * @author Sean Owen (srowen@google.com)
28  */
29 final class ServletContextLogHandler extends Handler {
30
31   private final ServletContext context;
32
33   ServletContextLogHandler(ServletContext context) {
34     this.context = context;
35   }
36
37   @Override
38   public void publish(LogRecord record) {
39     Formatter formatter = getFormatter();
40     String message;
41     if (formatter == null) {
42       message = record.getMessage();
43     } else {
44       message = formatter.format(record);
45     }
46     Throwable throwable = record.getThrown();
47     if (throwable == null) {
48       context.log(message);
49     } else {
50       context.log(message, throwable);
51     }
52   }
53
54   @Override
55   public void flush() {
56     // do nothing
57   }
58
59   @Override
60   public void close() {
61     // do nothing
62   }
63
64 }