Skip to content

Commit

Permalink
print the name instead of a reference
Browse files Browse the repository at this point in the history
  • Loading branch information
andreeap committed Feb 20, 2015
1 parent f3de0bc commit f0bea9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/MetaCPAN/Model/Release.pm
Expand Up @@ -125,9 +125,9 @@ sub _build_archive {

my $archive = MetaCPAN::Model::Archive->new( file => $self->file );

log_error {"$self->file is being impolite"} if $archive->is_impolite;
log_error { $self->file, ' is being impolite' } if $archive->is_impolite;

log_error {"$self->file is being naughty"} if $archive->is_naughty;
log_error { $self->file, ' is being naughty' } if $archive->is_naughty;

return $archive;
}
Expand Down

0 comments on commit f0bea9c

Please sign in to comment.