Skip to content

Commit

Permalink
Merge pull request moby#11448 from vishh/port_log
Browse files Browse the repository at this point in the history
Reduce logging level for "ip_local_port_range" proc file in not accessible.
  • Loading branch information
estesp committed Mar 17, 2015
2 parents c1639a7 + 39d49ba commit f42acd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/networkdriver/portallocator/portallocator.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func init() {

file, err := os.Open(portRangeKernelParam)
if err != nil {
log.Errorf("Failed to read %s kernel parameter: %v", portRangeKernelParam, err)
log.Warnf("Failed to read %s kernel parameter: %v", portRangeKernelParam, err)
return
}
var start, end int
Expand Down

0 comments on commit f42acd0

Please sign in to comment.