Added an extra (optional) thing called "sources".
trace.log("hello", "mysource");
trace.error(e, "mysource");
you can then filter by sources.
Generally I try to use either class names or function names.
I.e.
javascript code:
function testicals(){
try{
var mystring = "hello this is my string";
trace.log(mystring ,"testicals()");
}catch(e){
trace.error(e ,"testicals()");
}
}
function boobies(){
try{
var mystring = "hello this is my string";
trace.log(mystring ,"boobies()");
}catch(e){
trace.error(e ,"boobies()");
}
}
[Mwah] |