We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exception
To do initially list of important Exceptions to handle. Particular focus on integrations.
Exceptions
The text was updated successfully, but these errors were encountered:
info
success
debug()
info()
warn()
error()
from superduperdb import logging. logging.info("Connecting to: <type of service}") .... connect() ... logging.success("Connected to: ", <client_info>)
from superduperdb import logging. logging.info("Submit job: <job description}") .... submit() ... logging.success("Submitted job: ", <job_id or future>)
try-catch
try: databackend = build(cfg.data_backend, data_backends) logging.info("Data Client is ready.", databackend.conn) except Exception as e: # Exit quickly if a connection fails. logging.error("Error initializing to DataBackend Client:", str(e)) sys.exit(1)
Sorry, something went wrong.
fnikolai
thejumpman2323
No branches or pull requests
To do initially list of important
Exceptions
to handle. Particular focus on integrations.The text was updated successfully, but these errors were encountered: