Commit 0057614b by Michael Roytman

Fix up logger

parent 39660fc5
......@@ -4,9 +4,11 @@ import pathlib2
import itertools
import sys
import argparse
import logging
TRAVIS_BUILD_DIR = os.environ.get("TRAVIS_BUILD_DIR")
CONFIG_FILE_PATH = pathlib2.Path(TRAVIS_BUILD_DIR, "util", "parsefiles_config.yml")
LOGGER = logging.getLogger(__name__)
def pack_containers(containers, num_shards):
"""
......@@ -74,6 +76,9 @@ if __name__ == '__main__':
args = arg_parse()
# configure logging
logging.basicConfig()
containers = []
# get containers from standard in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment