KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > log4j > nt > test > NTMin


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.nt.test;
18
19
20 import org.apache.log4j.Logger;
21 import org.apache.log4j.BasicConfigurator;
22 import org.apache.log4j.nt.NTEventLogAppender;
23 import org.apache.log4j.Priority;
24 import org.apache.log4j.NDC;
25
26
27 public class NTMin {
28
29   static Logger cat = Logger.getLogger(NTMin.class.getName());
30
31   public
32   static
33   void main(String JavaDoc argv[]) {
34
35     //if(argv.length == 1) {
36
init();
37     //}
38
//else {
39
//Usage("Wrong number of arguments.");
40
//}
41
test("someHost");
42   }
43
44
45   static
46   void Usage(String JavaDoc msg) {
47     System.err.println(msg);
48     System.err.println( "Usage: java " + NTMin.class + "");
49     System.exit(1);
50   }
51
52
53   static
54   void init() {
55
56     BasicConfigurator.configure(new NTEventLogAppender());
57   }
58
59   static
60   void test(String JavaDoc host) {
61     NDC.push(host);
62     int i = 0;
63     cat.debug( "Message " + i++);
64     cat.info( "Message " + i++);
65     cat.warn( "Message " + i++);
66     cat.error( "Message " + i++);
67     cat.log(Priority.FATAL, "Message " + i++);
68     cat.debug("Message " + i++, new Exception JavaDoc("Just testing."));
69   }
70 }
71
Popular Tags