KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > springframework > util > MockLog4jAppender


1 /*
2  * Copyright 2002-2005 the original author or authors.
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 org.springframework.util;
18
19 import java.util.ArrayList JavaDoc;
20 import java.util.List JavaDoc;
21
22 import org.apache.log4j.AppenderSkeleton;
23 import org.apache.log4j.spi.LoggingEvent;
24
25 /**
26  * @author Alef Arendsen
27  */

28 public class MockLog4jAppender extends AppenderSkeleton {
29     
30     public static final List JavaDoc loggingStrings = new ArrayList JavaDoc();
31     
32     public static boolean closeCalled = false;
33     
34     /* (non-Javadoc)
35      * @see org.apache.log4j.AppenderSkeleton#append(org.apache.log4j.spi.LoggingEvent)
36      */

37     protected void append(LoggingEvent evt) {
38         //System.out.println("Adding " + evt.getMessage());
39
loggingStrings.add(evt.getMessage());
40     }
41     
42     /* (non-Javadoc)
43      * @see org.apache.log4j.Appender#close()
44      */

45     public void close() {
46         closeCalled = true;
47     }
48
49     /* (non-Javadoc)
50      * @see org.apache.log4j.Appender#requiresLayout()
51      */

52     public boolean requiresLayout() {
53         return false;
54     }
55     
56     
57
58
59 }
60
Popular Tags