Skip to content

Commit

Permalink
chore: updates logging statements added post-rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Jennifer Power <[email protected]>
  • Loading branch information
jpower432 committed Jul 7, 2023
1 parent ae79f63 commit a4b7dc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trestlebot/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def run() -> None:
)
pre_tasks.append(assemble_task)
else:
logging.info("Assemble task skipped")
logger.info("Assemble task skipped")

if not args.skip_regenerate:
regenerate_task = RegenerateTask(
Expand All @@ -195,7 +195,7 @@ def run() -> None:
)
pre_tasks.append(regenerate_task)
else:
logging.info("Regeneration task skipped")
logger.info("Regeneration task skipped")

exit_code: int = 0

Expand Down
1 change: 1 addition & 0 deletions trestlebot/tasks/authored/ssp.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
AuthorObjectBase,
)


class SSPIndex:
"""
Class for managing the SSP index that stores relationship data by Trestle name
Expand Down

0 comments on commit a4b7dc9

Please sign in to comment.