Merge pull request #1462 from liuchang23/master

enhance log message of oss driver
This commit is contained in:
Richard Scothern 2016-02-16 10:49:18 -08:00
commit d126752d97

View file

@ -744,9 +744,9 @@ func (d *driver) URLFor(ctx context.Context, path string, options map[string]int
} }
} }
logrus.Infof("methodString: %s, expiresTime: %v", methodString, expiresTime) logrus.Infof("methodString: %s, expiresTime: %v", methodString, expiresTime)
testURL := d.Bucket.SignedURLWithMethod(methodString, d.ossPath(path), expiresTime, nil, nil) signedURL := d.Bucket.SignedURLWithMethod(methodString, d.ossPath(path), expiresTime, nil, nil)
logrus.Infof("testURL: %s", testURL) logrus.Infof("signed URL: %s", signedURL)
return testURL, nil return signedURL, nil
} }
func (d *driver) ossPath(path string) string { func (d *driver) ossPath(path string) string {