X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FApp%2FRgit%2FUtils.pm;h=7a4c3b36779a8a4aef2e3949544f8ff5e26d6c57;hb=caf4ff14ac06ea364ea51f725d041fd715e9682f;hp=0804c012c1377012a4f922f27539ef201b8d513b;hpb=e267749b5294c865fa9584c6f15bb0af85e24e30;p=perl%2Fmodules%2Frgit.git diff --git a/lib/App/Rgit/Utils.pm b/lib/App/Rgit/Utils.pm index 0804c01..7a4c3b3 100644 --- a/lib/App/Rgit/Utils.pm +++ b/lib/App/Rgit/Utils.pm @@ -7,19 +7,19 @@ use Carp qw/croak/; =head1 NAME -App::Rgit::Utils - Miscellanous utilities for App::Rgit classes. +App::Rgit::Utils - Miscellaneous utilities for App::Rgit classes. =head1 VERSION -Version 0.03 +Version 0.06 =cut -our $VERSION = '0.03'; +our $VERSION = '0.06'; =head1 DESCRIPTION -Miscellanous utilities for L classes. +Miscellaneous utilities for L classes. This is an internal module to L. @@ -38,6 +38,19 @@ use constant { LAST => 0x8, }; +=head2 C, C, C, C and C + +Message levels. + +=cut + +use constant { + INFO => 3, + WARN => 2, + ERR => 1, + CRIT => 0, +}; + =head1 FUNCTIONS =head2 C @@ -60,14 +73,17 @@ C is only exported on request, either by its name or by the C<'funcs'> C C, C and C are only exported on request, either by their name or by the C<'codes'> tags. +C, C, C and C are only exported on request, either by their name or by the C<'levels'> tags. + =cut use base qw/Exporter/; our @EXPORT = (); our %EXPORT_TAGS = ( - funcs => [ qw/validate/ ], - codes => [ qw/SAVE NEXT REDO LAST/ ], + funcs => [ qw/validate/ ], + codes => [ qw/SAVE NEXT REDO LAST/ ], + levels => [ qw/INFO WARN ERR CRIT/ ], ); our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS; $EXPORT_TAGS{'all'} = [ @EXPORT_OK ]; @@ -79,7 +95,7 @@ L. =head1 AUTHOR Vincent Pit, C<< >>, L. - + You can contact me by mail or on C (vincent). =head1 BUGS @@ -94,7 +110,7 @@ You can find documentation for this module with the perldoc command. =head1 COPYRIGHT & LICENSE -Copyright 2008 Vincent Pit, all rights reserved. +Copyright 2008-2009 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.