Fix: Small fixes to the Java agent example files
authorAlexandre Montplaisir <alexmonthy@efficios.com>
Wed, 22 Jul 2015 02:50:44 +0000 (22:50 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 22 Jul 2015 15:10:22 +0000 (11:10 -0400)
Remove unused imports.
Add missing dispose() in the log4j example.
Fix typos.

Signed-off-by: Alexandre Montplaisir <alexmonthy@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
doc/examples/java-jul/Hello.java
doc/examples/java-log4j/Hello.java

index 87b4c1601e50c96f48ec864a95dbf1e6a286ac44..588ec815daf302f950ed7db355093139a6c636a3 100644 (file)
@@ -20,8 +20,6 @@
  * IN THE SOFTWARE.
  */
 
-import java.io.IOException;
-import java.util.logging.Level;
 import java.util.logging.Logger;
 
 /*
@@ -49,13 +47,13 @@ public class Hello
                Logger helloLog = Logger.getLogger("hello");
 
                /*
-                * Get the LTTngAgent singelton reference. This will also initialize
+                * Get the LTTngAgent singleton reference. This will also initialize
                 * the Agent and make it register to the session daemon if available.
                 * When this returns, the Agent is registered and fully ready. If no
                 * session daemon is found, it will return and retry every 3 seconds in
                 * the background. TCP is used for communication.
                 *
-                * Note that the LTTngAgent once registered is a seperate thread in
+                * Note that the LTTngAgent once registered is a separate thread in
                 * your Java application.
                 */
                lttngAgent = LTTngAgent.getLTTngAgent();
@@ -95,7 +93,7 @@ public class Hello
 
                /*
                 * Again, this is highly recommended so the session daemon socket gets
-                * cleaned up explicitely but it is not mandatory to do this step.
+                * cleaned up explicitly but it is not mandatory to do this step.
                 */
                lttngAgent.dispose();
        }
index 083ec12ab32953dd0618bff46a69bbfec067a4c3..38725cb6a7e04b9c3032497cb99b030652b2c83d 100644 (file)
  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  * IN THE SOFTWARE.
  */
-import java.io.IOException;
 
-import org.apache.log4j.Logger;
 import org.apache.log4j.BasicConfigurator;
-
+import org.apache.log4j.Logger;
 import org.lttng.ust.agent.LTTngAgent;
 
 public class Hello
@@ -51,5 +49,7 @@ public class Hello
                System.out.println("Firing hello delay in 5 seconds...");
                Thread.sleep(5000);
                helloLog.info("Hello World delayed...");
+
+               lttngAgent.dispose();
        }
 }
This page took 0.02578 seconds and 5 git commands to generate.