Skip Menu |

This queue is for tickets about the Hyper CPAN distribution.

Report information
The Basics
Id: 51596
Status: new
Priority: 0/
Queue: Hyper

People
Owner: Nobody in particular
Requestors: volker.voit [...] googlemail.com
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: v0.05
Fixed in: (no value)



Subject: Hyper-Debug should have a get_text method
The module Hyper::Debug should have a method to get plain text. This would be useful when you want to log debug messages instead of just display it within a site or you are using other modules to create debug output. the method could look like this: sub get_text { my $self = shift; my $ident = ident $self; return join q{}, map { "$_->{caller}\n" . join q{}, map { " $_\n" } @{ $_->{messages} }; } @{ $debug_messages_of{$ident} }; }