Results 1 to 9 of 9
Thread: wrapper all methods debug's info
- 08-02-2011, 03:56 PM #1
wrapper all methods debug's info
Hi all. I need some advice about follow task.
I need wrap all methods in a project debug information like that.
source method
wrapper methodJava Code:public void echo() { // }
Any advice will be appreciated.Java Code:public void echo() { log.debug("start : " + nameMethod); // log.debug("finish : " + nameMethod + " time : " + time); }Skype: petrarsentev
http://TrackStudio.com
- 08-02-2011, 04:10 PM #2
Are you looking to write a program to scan java source code and insert source statements for the two log.debug() method calls?I need wrap all methods in a project debug information like that.
- 08-02-2011, 04:16 PM #3
Yes. But I must be able to turn it off when I get this task. I know that it can make aspectJ, but I don't have any practice with it.
Last edited by Petr; 08-02-2011 at 04:19 PM.
Skype: petrarsentev
http://TrackStudio.com
- 08-02-2011, 04:19 PM #4
If the methods are in the same class make add an if(doLog) log....
Set doLog = false to turn the log off.
- 08-03-2011, 11:40 AM #5
Oh I think it is not so good solve. This project has more 1000 classes. If I do it I will be to do much hand job.
Skype: petrarsentev
http://TrackStudio.com
- 08-03-2011, 12:23 PM #6
Moderator
- Join Date
- Apr 2009
- Posts
- 10,438
- Rep Power
- 16
Why?
What is the purpose of this?
- 08-03-2011, 01:10 PM #7
Are you looking to write a program to scan java source code and insert source statements for the two log.debug() method calls?
- 08-03-2011, 02:49 PM #8
I'm looking something like that Perf4J 0.9.13 - Developer Guide
Skype: petrarsentev
http://TrackStudio.com
- 08-03-2011, 02:54 PM #9
Moderator
- Join Date
- Apr 2009
- Posts
- 10,438
- Rep Power
- 16
Similar Threads
-
Debug challenge: how do you debug a Java program?
By CJSLMAN in forum New To JavaReplies: 60Last Post: 07-04-2009, 10:28 AM -
Wrapper objects
By Ash-infinity in forum New To JavaReplies: 4Last Post: 12-14-2008, 08:48 PM -
Wrapper Class
By haiforhussain in forum New To JavaReplies: 6Last Post: 06-24-2008, 08:08 AM -
Secure FTP Wrapper 3.0.2
By Java Tip in forum Java SoftwareReplies: 0Last Post: 04-29-2008, 06:05 PM -
wrapper classes
By sireesha in forum New To JavaReplies: 5Last Post: 12-11-2007, 09:45 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks