Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Jan 8, 2024
1 parent f7be735 commit b3718e5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/gene/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@
@click.group()
def cli() -> None:
"""Manage Gene Normalizer data."""
logging.basicConfig(filename="gene-normalizer.log", level=logging.INFO, force=True)
logging.basicConfig(
filename="gene-normalizer.log",
format="%(asctime)s %(levelname)s:%(message)s",
level=logging.INFO,
force=True,
)


@cli.command()
Expand Down

0 comments on commit b3718e5

Please sign in to comment.