Skip to content

Commit 218ab0c

Browse files
committed
🔊 better logging for failed logs
1 parent bb368db commit 218ab0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/beastiary/cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def main(
5353
)
5454
check_for_new_samples(api.db, trace=trace)
5555
typer.echo(f"✅ - {trace['path']}")
56-
except ValueError:
57-
typer.echo(f"❌ - {path}")
56+
except ValueError as e:
57+
typer.echo(f"❌ - {path}: {e}")
5858
typer.echo("")
5959

6060
setattr(api, "token", token)

0 commit comments

Comments
 (0)