Adding an extra info.

This commit is contained in:
smruthi2187
2018-02-08 13:58:44 -08:00
parent 054f9bcd85
commit 610790244b
+2
View File
@@ -60,6 +60,7 @@ var (
)
func MakeStowClient(storageType StorageType, storagePath string, containerName string) (*StowClient, error) {
log.Infof("start : MakeStowClient")
if storageType != StorageTypeLocal {
return nil, errors.New("Storage types other than 'local' are not implemented")
}
@@ -104,6 +105,7 @@ func MakeStowClient(storageType StorageType, storagePath string, containerName s
}
stowClient.container = con
log.Infof("end : MakeStowClient")
return stowClient, nil
}