Skip to content

Commit

Permalink
tweak warning msg a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnavy committed Nov 9, 2010
1 parent f325eda commit 4d18076
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Plient.pm
Expand Up @@ -97,7 +97,7 @@ sub _extract_protocol {
return 'file';
}
else {
warn "unsupported $uri";
warn "unsupported uri: $uri";
return;
}
}
Expand All @@ -119,7 +119,7 @@ sub _dispatch_protocol {
return 'Plient::Protocol::HTTPS';
}
else {
warn "unsupported protocol";
warn "unsupported protocol: $protocol";
return;
}
}
Expand Down Expand Up @@ -147,7 +147,7 @@ sub dispatch {
return sub { $sub->( $uri, $args ) };
}
else {
warn "unsupported $method";
warn "unsupported method: $method";
return;
}
}
Expand Down

0 comments on commit 4d18076

Please sign in to comment.