From 610790244b3764d290d53de170576ac59de14f90 Mon Sep 17 00:00:00 2001 From: smruthi2187 Date: Tue, 6 Feb 2018 16:37:06 -0800 Subject: [PATCH] Adding an extra info. --- storagesvc/stowClient.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/storagesvc/stowClient.go b/storagesvc/stowClient.go index e2a87ef1..aaab2074 100644 --- a/storagesvc/stowClient.go +++ b/storagesvc/stowClient.go @@ -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 }