Skip to content

Commit

Permalink
Added logging config to docker2sqlelf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fzakaria committed Apr 6, 2024
1 parent 6013a52 commit 28b83af
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/docker2sqlelf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ def cleanup() -> None:


if __name__ == "__main__":
# Setup the logging config
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s %(levelname)-8s [%(filename)s:%(lineno)d] %(message)s",
)

parser = argparse.ArgumentParser(
description="Convert docker image to sqlelf database."
)
Expand Down

0 comments on commit 28b83af

Please sign in to comment.