--- trunk/lib/Frey/Config.pm 2008/11/06 17:56:59 322 +++ trunk/lib/Frey/Config.pm 2008/11/17 19:33:29 383 @@ -1,6 +1,8 @@ package Frey::Config; use Moose::Role; +#requires 'debug'; + use YAML qw/LoadFile/; use Hash::Merge qw/merge/; use Data::Dump qw/dump/; @@ -43,7 +45,7 @@ } else { %config = %{ merge( LoadFile($path) , \%config ) } if -e $path; } - warn "## $path current config = ",dump( %config ) if $self->debug; + warn "## load_config $path current config = ",dump( %config ) if $self->debug; } }