Add log.go back to core of e2e test framework

We tried to separate logger functionality as subpackage of e2e test
framework, but we've recognized that should be core functionality
and we should keep it as core of e2e test framework after facing
circular dependency issues.
So this adds log.go back to core of e2e test framework. In addition,
this makes volume sub package use the core logger as a sample.
This commit is contained in:
Kenichi Omichi
2019-08-14 17:22:02 +00:00
parent 32dc42ed34
commit 5e1743cfb1
5 changed files with 53 additions and 12 deletions

View File

@@ -14,6 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
// Package log should be removed after switching to use core framework log.
package log
import (