Skip to content

Commit

Permalink
add logging config
Browse files Browse the repository at this point in the history
  • Loading branch information
ochkalova committed Sep 16, 2024
1 parent 5e46b99 commit 85e183f
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
import requests


logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(levelname)s - %(message)s",
handlers=[logging.StreamHandler()],
)


def main(input: Path, proteins: Path, output: Path, rhea2chebi: Path, up2rhea: Path):
logging.info("Step 0/5: Checking Rhea-CHEBI mapping file...")
if not rhea2chebi:
Expand Down

0 comments on commit 85e183f

Please sign in to comment.