firephp groups

2 messages Options
Embed this post
Permalink
Guido Jansen () firephp groups
Reply Threaded More More options
Print post
Permalink
I think the grouping mechanism of firephp would make more sense, if you would really groups them together, i.e. if you have two groups with the same name, which are generated at different locations in your code that these groups are not presented in firephp as different groups and so show up disjunctive, but rather form one(!) group

e.g.
[code]
$firephp->group('Group1');
$firephp->log('log1');
$firephp->log('log2');
$firephp->endgroup();

// ...

$firephp->group('Group1');
$firephp->log('log3');
$firephp->log('log4');
$firephp->endgroup();
[/code]

should show as

+ Group1
  log1
  log2
  log3
  log4

and not as

+ Group1
  log1
  log2
...
+ Group1
  log3
  log4
Christoph Dorn () Re: firephp groups
Reply Threaded More More options
Print post
Permalink
Please add your comments to his ticket: http://code.google.com/p/firephp/issues/detail?id=46