X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F07_Debugging.pod;h=2e71f3a69ac4843932bdc3cc210af278005c882b;hp=43f913bef019d390f2a4d9d72663f40d09ddb485;hb=4768184b3b277399116fbd53cae3697a9767fee5;hpb=5988477160c698d0e5efd1cf1911845d40a327cf diff --git a/lib/Catalyst/Manual/Tutorial/07_Debugging.pod b/lib/Catalyst/Manual/Tutorial/07_Debugging.pod index 43f913b..2e71f3a 100644 --- a/lib/Catalyst/Manual/Tutorial/07_Debugging.pod +++ b/lib/Catalyst/Manual/Tutorial/07_Debugging.pod @@ -93,7 +93,7 @@ template view use: [% c.log.debug("This is a test log message") %] -As with many other logging facilities, you a method is defined for +As with many other logging facilities, a method is defined for each of the following "logging levels" (in increasing order of severity/importance): @@ -118,14 +118,14 @@ C line as follows inside the C method (I like to "left-justify" my debug statements so I don't forget to remove them, but you can obviously indent them if you prefer): - sub list : Local { + sub list :Local { # Retrieve the usual Perl OO '$self' for this object. $c is the Catalyst # 'Context' that's used to 'glue together' the various components # that make up the application my ($self, $c) = @_; $DB::single=1; - + # Retrieve all of the book records as book model objects and store in the # stash where they can be accessed by the TT template $c->stash->{books} = [$c->model('DB::Book')->all]; @@ -311,7 +311,7 @@ debugging: Check the version of an installed module: - perl -MEmod_nameE -e '"print $Emod_nameE::VERSION\n"' + perl -M -e 'print "$::VERSION\n"' For example: @@ -348,7 +348,7 @@ Otherwise, it returns undef and nothing will be printed. If you run into issues during the rendering of your template, it might be helpful to enable TT C options. You can do this in a Catalyst environment by adding a C line to the C<__PACKAGE__->config> -declaration in C: +declaration in C: __PACKAGE__->config({ TEMPLATE_EXTENSION => '.tt2', @@ -376,5 +376,5 @@ Please report any errors, issues or suggestions to the author. The most recent version of the Catalyst Tutorial can be found at L. -Copyright 2006-2008, Kennedy Clark, under Creative Commons License +Copyright 2006-2010, Kennedy Clark, under Creative Commons License (L).