<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Using Load Time Logging</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Using%2520Load%2520Time%2520Logging/</link><description>Recent changes to Using Load Time Logging</description><atom:link href="https://sourceforge.net/p/mobgenlogger/wiki/Using%20Load%20Time%20Logging/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 04 May 2012 12:24:55 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/mobgenlogger/wiki/Using%20Load%20Time%20Logging/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Using Load Time Logging modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Using%2520Load%2520Time%2520Logging/</link><description>&lt;pre&gt;--- v19 
+++ v20 
@@ -92,3 +92,5 @@
 &gt;______
 &gt;The output must be something similar to this if we use the attached log4j.properties:
 &gt;[[img src=logger-sample_001.png alt=sample]]
+
+See also [Refining Target Methods]
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 12:24:55 -0000</pubDate><guid>https://sourceforge.net9274bc211ba6b0107e10493ff8b80778b3c4968b</guid></item><item><title>WikiPage Using Load Time Logging modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Using%2520Load%2520Time%2520Logging/</link><description>&lt;pre&gt;--- v18 
+++ v19 
@@ -90,5 +90,5 @@
 &gt;______
 &gt;java -javaagent:aspectjweaver-1.6.12.jar -cp .:logger-loadtime-aspect-1.0.0.0-jar-with-dependencies.jar org.sample.logger.app.SampleApp
 &gt;______
-&gt;The output must be something similar to this:
+&gt;The output must be something similar to this if we use the attached log4j.properties:
 &gt;[[img src=logger-sample_001.png alt=sample]]
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 09:37:43 -0000</pubDate><guid>https://sourceforge.netb4f6e47b512bb0f79f69ce0cfe2c4f4a6e69850f</guid></item><item><title>WikiPage Using Load Time Logging modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Using%2520Load%2520Time%2520Logging/</link><description>&lt;pre&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 03:27:08 -0000</pubDate><guid>https://sourceforge.net1599b8489aa79f95e5a3bb2a986020419036753a</guid></item><item><title>WikiPage Using Load Time Logging modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Using%2520Load%2520Time%2520Logging/</link><description>&lt;pre&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 03:26:04 -0000</pubDate><guid>https://sourceforge.net92e9d004c22e18ca13b9ace11fc52d89bc47104f</guid></item><item><title>WikiPage Using Load Time Logging modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Using%2520Load%2520Time%2520Logging/</link><description>&lt;pre&gt;--- v15 
+++ v16 
@@ -90,3 +90,5 @@
 &gt;______
 &gt;java -javaagent:aspectjweaver-1.6.12.jar -cp .:logger-loadtime-aspect-1.0.0.0-jar-with-dependencies.jar org.sample.logger.app.SampleApp
 &gt;______
+&gt;The output must be something similar to this:
+&gt;[[img src=logger-sample_001.png alt=sample]]
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 03:19:43 -0000</pubDate><guid>https://sourceforge.netc8d9ce2300ba5f83541e2a152e02e0b74811f06b</guid></item><item><title>WikiPage Using Load Time Logging modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Using%2520Load%2520Time%2520Logging/</link><description>&lt;pre&gt;--- v14 
+++ v15 
@@ -19,54 +19,54 @@
 
 2 Two java classes that don't have any logging information.
 
-&gt;__PersonBean class__
-&gt;______
+&gt;__PersonBean class__ *(i.e. included in the attached sample-classes.tar.gz.)*
+&gt;______
 &gt;package org.sample.logger.bean;
 &gt;
 &gt;public class PersonBean {
 &gt;
 &gt;    private String firstName;
 &gt;    private String middleName;
 &gt;    private String lastName;
 &gt;
 &gt;    public String getFirstName() {
 &gt;        return firstName;
 &gt;    }
 &gt;
 &gt;    public void setFirstName(String firstName) {
 &gt;        this.firstName = firstName;
 &gt;    }
 &gt;
 &gt;    public String getMiddleName() {
 &gt;        return middleName;
 &gt;    }
 &gt;
 &gt;    public void setMiddleName(String middleName) {
 &gt;        this.middleName = middleName;
 &gt;    }
 &gt;
 &gt;    public String getLastName() {
 &gt;        return lastName;
 &gt;    }
 &gt;
 &gt;    public void setLastName(String lastName) {
 &gt;        this.lastName = lastName;
 &gt;    }
 &gt;
 &gt;    public String getFullName() {
 &gt;        return new StringBuilder(lastName.toUpperCase()).append(", ")
 &gt;            .append(firstName.toUpperCase()).append(" ")
 &gt;            .append(middleName.toUpperCase()).toString();
 &gt;    }
 &gt;    
 &gt;    public String toString() {
 &gt;        return getFullName();
 &gt;    }
 &gt;
 &gt;}
 &gt;______
 &gt;
-&gt;__SampleApp class__
+&gt;__SampleApp class__ *(i.e. included in the attached sample-classes.tar.gz.)*
 &gt;______
 &gt;package org.sample.logger.app;
 &gt;
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 03:13:06 -0000</pubDate><guid>https://sourceforge.netf516a52a2b29861cabcc78fe9b1be6a9055839c6</guid></item><item><title>WikiPage Using Load Time Logging modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Using%2520Load%2520Time%2520Logging/</link><description>&lt;pre&gt;--- v13 
+++ v14 
@@ -15,80 +15,78 @@
 
 If everything is ready we can now make our hands dirty.
 
-1. Create a folder where all of the items need libraries and configuration files are placed. 
-
-2. Two java classes that don't have any logging information.
-
+1 Create a folder where all of the items need libraries and configuration files are placed. 
+
+2 Two java classes that don't have any logging information.
+
 &gt;__PersonBean class__
 &gt;______
 &gt;package org.sample.logger.bean;
 &gt;
 &gt;public class PersonBean {
 &gt;
 &gt;    private String firstName;
 &gt;    private String middleName;
 &gt;    private String lastName;
 &gt;
 &gt;    public String getFirstName() {
 &gt;        return firstName;
 &gt;    }
 &gt;
 &gt;    public void setFirstName(String firstName) {
 &gt;        this.firstName = firstName;
 &gt;    }
 &gt;
 &gt;    public String getMiddleName() {
 &gt;        return middleName;
 &gt;    }
 &gt;
 &gt;    public void setMiddleName(String middleName) {
 &gt;        this.middleName = middleName;
 &gt;    }
 &gt;
 &gt;    public String getLastName() {
 &gt;        return lastName;
 &gt;    }
 &gt;
 &gt;    public void setLastName(String lastName) {
 &gt;        this.lastName = lastName;
 &gt;    }
 &gt;
 &gt;    public String getFullName() {
 &gt;        return new StringBuilder(lastName.toUpperCase()).append(", ")
 &gt;            .append(firstName.toUpperCase()).append(" ")
 &gt;            .append(middleName.toUpperCase()).toString();
 &gt;    }
 &gt;    
 &gt;    public String toString() {
 &gt;        return getFullName();
 &gt;    }
 &gt;
 &gt;}
 &gt;______
 &gt;
 &gt;__SampleApp class__
 &gt;______
 &gt;package org.sample.logger.app;
 &gt;
 &gt;import org.sample.logger.bean.PersonBean;
 &gt;
 &gt;public class SampleApp {
 &gt;    public static void main(String[] args) {
 &gt;        PersonBean person = new PersonBean();
 &gt;
 &gt;        person.setFirstName("FirstName");
 &gt;        person.setLastName("LastName");
 &gt;        person.setMiddleName("MiddleName");
 &gt;
 &gt;        System.out.println("Person=" + person);
 &gt;    }
 &gt;}
 &gt;______
 
-3. Compile all the classes.
-
-
-4. Run it with the command below:
+3 Compile all the classes.
+4 Run it with the command below:
 &gt;______
 &gt;java -javaagent:aspectjweaver-1.6.12.jar -cp .:logger-loadtime-aspect-1.0.0.0-jar-with-dependencies.jar org.sample.logger.app.SampleApp
 &gt;______
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 03:09:42 -0000</pubDate><guid>https://sourceforge.netc9dc0c8b8268eac7f7749392b9ce57d8a0de74ac</guid></item><item><title>WikiPage Using Load Time Logging modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Using%2520Load%2520Time%2520Logging/</link><description>&lt;pre&gt;--- v12 
+++ v13 
@@ -13,78 +13,82 @@
 + __log4j.properties__ *(i.e. if not yet available in the project we can check the attachments.)*
 
 
-If everything is ready we can now makes are hand dirty.
+If everything is ready we can now make our hands dirty.
+
 1. Create a folder where all of the items need libraries and configuration files are placed. 
+
 2. Two java classes that don't have any logging information.
 
 &gt;__PersonBean class__
 &gt;______
 &gt;package org.sample.logger.bean;
 &gt;
 &gt;public class PersonBean {
 &gt;
 &gt;    private String firstName;
 &gt;    private String middleName;
 &gt;    private String lastName;
 &gt;
 &gt;    public String getFirstName() {
 &gt;        return firstName;
 &gt;    }
 &gt;
 &gt;    public void setFirstName(String firstName) {
 &gt;        this.firstName = firstName;
 &gt;    }
 &gt;
 &gt;    public String getMiddleName() {
 &gt;        return middleName;
 &gt;    }
 &gt;
 &gt;    public void setMiddleName(String middleName) {
 &gt;        this.middleName = middleName;
 &gt;    }
 &gt;
 &gt;    public String getLastName() {
 &gt;        return lastName;
 &gt;    }
 &gt;
 &gt;    public void setLastName(String lastName) {
 &gt;        this.lastName = lastName;
 &gt;    }
 &gt;
 &gt;    public String getFullName() {
 &gt;        return new StringBuilder(lastName.toUpperCase()).append(", ")
 &gt;            .append(firstName.toUpperCase()).append(" ")
 &gt;            .append(middleName.toUpperCase()).toString();
 &gt;    }
 &gt;    
 &gt;    public String toString() {
 &gt;        return getFullName();
 &gt;    }
 &gt;
 &gt;}
 &gt;______
 &gt;
 &gt;__SampleApp class__
 &gt;______
 &gt;package org.sample.logger.app;
 &gt;
 &gt;import org.sample.logger.bean.PersonBean;
 &gt;
 &gt;public class SampleApp {
 &gt;    public static void main(String[] args) {
 &gt;        PersonBean person = new PersonBean();
 &gt;
 &gt;        person.setFirstName("FirstName");
 &gt;        person.setLastName("LastName");
 &gt;        person.setMiddleName("MiddleName");
 &gt;
 &gt;        System.out.println("Person=" + person);
 &gt;    }
 &gt;}
 &gt;______
 
 3. Compile all the classes.
+
+
 4. Run it with the command below:
-______
-java -javaagent:aspectjweaver-1.6.12.jar -cp logger-loadtime-aspect-1.0.0.0-jar-with-dependencies.jar:logger-sample-app.jar org.sample.logger.app.SampleApp
-______
+&gt;______
+&gt;java -javaagent:aspectjweaver-1.6.12.jar -cp .:logger-loadtime-aspect-1.0.0.0-jar-with-dependencies.jar org.sample.logger.app.SampleApp
+&gt;______
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 03:08:17 -0000</pubDate><guid>https://sourceforge.net0cdc8e551fa9acf6b166858a148aa4085cb954d6</guid></item><item><title>WikiPage Using Load Time Logging modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Using%2520Load%2520Time%2520Logging/</link><description>&lt;pre&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 03:01:09 -0000</pubDate><guid>https://sourceforge.net82add3091bfba96e0d1e0c818b2f107d8709666b</guid></item><item><title>WikiPage Using Load Time Logging modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Using%2520Load%2520Time%2520Logging/</link><description>&lt;pre&gt;--- v10 
+++ v11 
@@ -18,70 +18,70 @@
 2. Two java classes that don't have any logging information.
 
 &gt;__PersonBean class__
-______
-package org.sample.logger.bean;
-
-public class PersonBean {
-
-    private String firstName;
-    private String middleName;
-    private String lastName;
-
-    public String getFirstName() {
-        return firstName;
-    }
-
-    public void setFirstName(String firstName) {
-        this.firstName = firstName;
-    }
-
-    public String getMiddleName() {
-        return middleName;
-    }
-
-    public void setMiddleName(String middleName) {
-        this.middleName = middleName;
-    }
-
-    public String getLastName() {
-        return lastName;
-    }
-
-    public void setLastName(String lastName) {
-        this.lastName = lastName;
-    }
-
-    public String getFullName() {
-        return new StringBuilder(lastName.toUpperCase()).append(", ")
-            .append(firstName.toUpperCase()).append(" ")
-            .append(middleName.toUpperCase()).toString();
-    }
-    
-    public String toString() {
-        return getFullName();
-    }
-
-}
-______
-
+&gt;______
+&gt;package org.sample.logger.bean;
+&gt;
+&gt;public class PersonBean {
+&gt;
+&gt;    private String firstName;
+&gt;    private String middleName;
+&gt;    private String lastName;
+&gt;
+&gt;    public String getFirstName() {
+&gt;        return firstName;
+&gt;    }
+&gt;
+&gt;    public void setFirstName(String firstName) {
+&gt;        this.firstName = firstName;
+&gt;    }
+&gt;
+&gt;    public String getMiddleName() {
+&gt;        return middleName;
+&gt;    }
+&gt;
+&gt;    public void setMiddleName(String middleName) {
+&gt;        this.middleName = middleName;
+&gt;    }
+&gt;
+&gt;    public String getLastName() {
+&gt;        return lastName;
+&gt;    }
+&gt;
+&gt;    public void setLastName(String lastName) {
+&gt;        this.lastName = lastName;
+&gt;    }
+&gt;
+&gt;    public String getFullName() {
+&gt;        return new StringBuilder(lastName.toUpperCase()).append(", ")
+&gt;            .append(firstName.toUpperCase()).append(" ")
+&gt;            .append(middleName.toUpperCase()).toString();
+&gt;    }
+&gt;    
+&gt;    public String toString() {
+&gt;        return getFullName();
+&gt;    }
+&gt;
+&gt;}
+&gt;______
+&gt;
 &gt;__SampleApp class__
 &gt;______
 &gt;package org.sample.logger.app;
 &gt;
 &gt;import org.sample.logger.bean.PersonBean;
 &gt;
 &gt;public class SampleApp {
-    public static void main(String[] args) {
-        PersonBean person = new PersonBean();
-
-        person.setFirstName("FirstName");
-        person.setLastName("LastName");
-        person.setMiddleName("MiddleName");
-
-        System.out.println("Person=" + person);
-    }
-}
-______
+&gt;    public static void main(String[] args) {
+&gt;        PersonBean person = new PersonBean();
+&gt;
+&gt;        person.setFirstName("FirstName");
+&gt;        person.setLastName("LastName");
+&gt;        person.setMiddleName("MiddleName");
+&gt;
+&gt;        System.out.println("Person=" + person);
+&gt;    }
+&gt;}
+&gt;______
 
 3. Compile all the classes.
 4. Run it with the command below:
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 02:58:29 -0000</pubDate><guid>https://sourceforge.netef253ec80b505e8aa64d59e976df0aa5960a7428</guid></item></channel></rss>