Fix: Small fixes to the Java agent example files
[lttng-ust.git] / doc / examples / java-log4j / Hello.java
1 /*
2 * Copyright (C) 2014 - Christian Babeux <christian.babeux@efficios.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to
6 * deal in the Software without restriction, including without limitation the
7 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8 * sell copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20 * IN THE SOFTWARE.
21 */
22
23 import org.apache.log4j.BasicConfigurator;
24 import org.apache.log4j.Logger;
25 import org.lttng.ust.agent.LTTngAgent;
26
27 public class Hello
28 {
29 /* Of course :) */
30 private static final int answer = 42;
31
32 static Logger helloLog = Logger.getLogger(Hello.class);
33
34 private static LTTngAgent lttngAgent;
35
36 public static void main(String args[]) throws Exception
37 {
38 BasicConfigurator.configure();
39 lttngAgent = LTTngAgent.getLTTngAgent();
40
41 /*
42 * Gives you time to do some lttng commands before any event is hit.
43 */
44 Thread.sleep(5000);
45
46 /* Trigger a tracing event using the JUL Logger created before. */
47 helloLog.info("Hello World, the answer is " + answer);
48
49 System.out.println("Firing hello delay in 5 seconds...");
50 Thread.sleep(5000);
51 helloLog.info("Hello World delayed...");
52
53 lttngAgent.dispose();
54 }
55 }
This page took 0.031783 seconds and 5 git commands to generate.