Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
reduce some of the debug logging not needed at the moment
  • Loading branch information
jgsmith committed Oct 14, 2012
1 parent 7786a38 commit be3e2d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/OokOok/Declare/Base/Collection.pm
Expand Up @@ -227,7 +227,7 @@ The following methods are provided for collections.
my $results = $self -> verify('POST', $json);
delete @$results{grep { !exists $json->{$_} } keys %$results};

$self -> c -> log -> debug("POSTing for " . (ref $self || $self));
#$self -> c -> log -> debug("POSTing for " . (ref $self || $self));

my $r = eval { $self -> POST($results) };
if($@) {
Expand All @@ -244,7 +244,7 @@ The following methods are provided for collections.
my $resource_class = $self -> resource_class;
my $q = $self -> c -> model($self -> resource_model);

$c -> log -> debug("In POST for " . (ref $self || $self));
#$c -> log -> debug("In POST for " . (ref $self || $self));

# not to worry about constraints just yet
# we want to use any columns in $json that are appropriate for
Expand Down Expand Up @@ -277,7 +277,7 @@ The following methods are provided for collections.
source => $new_resource,
);

$c -> log -> debug("PUTting to " . (ref $resource || $resource));
#$c -> log -> debug("PUTting to " . (ref $resource || $resource));
$resource -> PUT($json);
}

Expand Down

0 comments on commit be3e2d9

Please sign in to comment.