KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > log4j > net > test > SMTPMin


1 /*
2  * Copyright 1999-2005 The Apache Software Foundation.
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.apache.log4j.net.test;
18
19 import org.apache.log4j.*;
20
21 public class SMTPMin {
22
23   static Logger cat = Logger.getLogger(SMTPMin.class);
24
25   public
26   static
27   void main(String JavaDoc argv[]) {
28     if(argv.length == 1)
29       init(argv[0]);
30     else
31       usage("Wrong number of arguments.");
32
33     NDC.push("some context");
34     test();
35   }
36
37   static
38   void usage(String JavaDoc msg) {
39     System.err.println(msg);
40     System.err.println("Usage: java " + SMTPMin.class.getName()
41                + " configFile");
42     System.exit(1);
43   }
44
45   static
46   void init(String JavaDoc configFile) {
47     PropertyConfigurator.configure(configFile);
48   }
49
50
51   static
52   void test() {
53     int i = 0;
54     cat.debug( "Message " + i++);
55     cat.debug("Message " + i++, new Exception JavaDoc("Just testing."));
56     cat.info( "Message " + i++);
57     cat.warn( "Message " + i++);
58     cat.error( "Message " + i++);
59     cat.log(Priority.FATAL, "Message " + i++);
60     LogManager.shutdown();
61     Thread.currentThread().getThreadGroup().list();
62   }
63
64 }
65
Popular Tags